blob: 710c002e8b51d7ae8d3e0587fc8acc6b6143d2dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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:background="@color/backgroundSecondary"
android:clipToPadding="false"
android:fitsSystemWindows="true"
android:paddingLeft="@dimen/activity_horizontal_gutter"
android:paddingRight="@dimen/activity_horizontal_gutter"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activities.BaseActivity">
<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>
</android.support.design.widget.CoordinatorLayout>
|