aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/base.xml
blob: 9259a08442781b3f281b39e906069fe01039375a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
																								 xmlns:app="http://schemas.android.com/apk/res-auto"
																								 xmlns:tools="http://schemas.android.com/tools"
																								 android:id="@+id/activity_base"
																								 android:layout_width="match_parent"
																								 android:layout_height="match_parent"
																								 android:fitsSystemWindows="true"
																								 tools:context=".activities.BaseActivity">

	<FrameLayout
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:background="@color/backgroundSecondary"
		android:clipToPadding="false"
		android:paddingLeft="@dimen/activity_horizontal_gutter"
		android:paddingRight="@dimen/activity_horizontal_gutter"
		app:layout_behavior="@string/appbar_scrolling_view_behavior">

		<FrameLayout
			android:id="@+id/main_content"
			android:layout_width="match_parent"
			android:layout_height="match_parent"
			android:background="@color/backgroundPrimary"
			android:elevation="@dimen/activity_page_elevation">
		</FrameLayout>

	</FrameLayout>

</android.support.design.widget.CoordinatorLayout>