aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/settings_activity.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-06-22 18:16:31 -0700
committerScott Jackson <daneren2005@gmail.com>2015-06-22 18:16:31 -0700
commitec59370dd453c2438d194610dbba2b1435ba35f8 (patch)
tree3fc6ba3132a15ef541f17d3ddd85c79cee710118 /app/src/main/res/layout/settings_activity.xml
parent44faeb4cc59d69df0c633d04c76d3a94c4fac2aa (diff)
downloaddsub-ec59370dd453c2438d194610dbba2b1435ba35f8.tar.gz
dsub-ec59370dd453c2438d194610dbba2b1435ba35f8.tar.bz2
dsub-ec59370dd453c2438d194610dbba2b1435ba35f8.zip
Theme update
Diffstat (limited to 'app/src/main/res/layout/settings_activity.xml')
-rw-r--r--app/src/main/res/layout/settings_activity.xml33
1 files changed, 19 insertions, 14 deletions
diff --git a/app/src/main/res/layout/settings_activity.xml b/app/src/main/res/layout/settings_activity.xml
index 89355cb7..c77528b2 100644
--- a/app/src/main/res/layout/settings_activity.xml
+++ b/app/src/main/res/layout/settings_activity.xml
@@ -1,16 +1,21 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
- <android.support.v7.widget.Toolbar
- android:id="@+id/main_toolbar"
- android:layout_height="?attr/actionBarSize"
- android:layout_width="match_parent"
- android:background="?attr/colorPrimary"
- android:elevation="4dp"/>
+ <android.support.v7.widget.Toolbar
+ android:id="@+id/main_toolbar"
+ android:layout_height="?attr/actionBarSize"
+ android:layout_width="match_parent"
+ android:background="?attr/colorPrimary"
+ android:elevation="4dp"
+ app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
+ app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
- <FrameLayout
- android:id="@+id/fragment_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
-</FrameLayout> \ No newline at end of file
+ <FrameLayout
+ android:id="@+id/fragment_container"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"/>
+</LinearLayout> \ No newline at end of file