2016-10-13 16:56:31 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-10-13 18:18:47 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-13 16:56:31 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-10-13 18:18:47 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-10-14 01:26:56 +02:00
|
|
|
android:layout_height="match_parent"
|
2016-10-13 18:18:47 +02:00
|
|
|
android:orientation="vertical">
|
2016-10-14 01:26:56 +02:00
|
|
|
|
2016-10-13 16:56:31 +02:00
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:id="@+id/settings__appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/settings__toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways|snap"
|
2016-10-14 01:26:56 +02:00
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
2016-10-13 16:56:31 +02:00
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/settings__fragment_container"
|
2016-10-25 17:04:32 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-10-13 18:18:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2016-10-14 01:26:56 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2016-10-13 16:56:31 +02:00
|
|
|
|
2016-10-13 18:18:47 +02:00
|
|
|
</LinearLayout>
|