diff options
Diffstat (limited to 'res/layout/dashboard.xml')
-rw-r--r-- | res/layout/dashboard.xml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/res/layout/dashboard.xml b/res/layout/dashboard.xml index 8a2928906..116580ada 100644 --- a/res/layout/dashboard.xml +++ b/res/layout/dashboard.xml @@ -14,21 +14,21 @@ limitations under the License. --> -<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/dashboard" android:layout_width="match_parent" - android:layout_height="match_parent"> - - <LinearLayout android:layout_width="match_parent" - android:layout_height="match_parent" - android:layout_gravity="center" - android:orientation="vertical"> - - <ListView android:id="@id/android:list" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:background="@color/background_drawer" /> - - </LinearLayout> - -</FrameLayout> + android:layout_height="match_parent" + android:paddingStart="12dp" + android:paddingEnd="12dp" + android:scrollbarStyle="outsideOverlay" + android:background="@color/dashboard_background_color"> + + <LinearLayout + android:id="@+id/dashboard_container" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_gravity="center_horizontal" + android:orientation="vertical" + /> + +</ScrollView> |