aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/src/main/res/layout/base.xml22
1 files changed, 8 insertions, 14 deletions
diff --git a/app/src/main/res/layout/base.xml b/app/src/main/res/layout/base.xml
index 9259a08..710c002 100644
--- a/app/src/main/res/layout/base.xml
+++ b/app/src/main/res/layout/base.xml
@@ -4,26 +4,20 @@
4 android:id="@+id/activity_base" 4 android:id="@+id/activity_base"
5 android:layout_width="match_parent" 5 android:layout_width="match_parent"
6 android:layout_height="match_parent" 6 android:layout_height="match_parent"
7 android:background="@color/backgroundSecondary"
8 android:clipToPadding="false"
7 android:fitsSystemWindows="true" 9 android:fitsSystemWindows="true"
10 android:paddingLeft="@dimen/activity_horizontal_gutter"
11 android:paddingRight="@dimen/activity_horizontal_gutter"
12 app:layout_behavior="@string/appbar_scrolling_view_behavior"
8 tools:context=".activities.BaseActivity"> 13 tools:context=".activities.BaseActivity">
9 14
10 <FrameLayout 15 <FrameLayout
16 android:id="@+id/main_content"
11 android:layout_width="match_parent" 17 android:layout_width="match_parent"
12 android:layout_height="match_parent" 18 android:layout_height="match_parent"
13 android:background="@color/backgroundSecondary" 19 android:background="@color/backgroundPrimary"
14 android:clipToPadding="false" 20 android:elevation="@dimen/activity_page_elevation">
15 android:paddingLeft="@dimen/activity_horizontal_gutter"
16 android:paddingRight="@dimen/activity_horizontal_gutter"
17 app:layout_behavior="@string/appbar_scrolling_view_behavior">
18
19 <FrameLayout
20 android:id="@+id/main_content"
21 android:layout_width="match_parent"
22 android:layout_height="match_parent"
23 android:background="@color/backgroundPrimary"
24 android:elevation="@dimen/activity_page_elevation">
25 </FrameLayout>
26
27 </FrameLayout> 21 </FrameLayout>
28 22
29</android.support.design.widget.CoordinatorLayout> 23</android.support.design.widget.CoordinatorLayout>