2016-02-27 22:26:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-10-03 18:13:29 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-02-27 23:05:23 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2017-10-03 18:13:29 +00:00
|
|
|
tools:context=".ui.activities.PrefsActivity"
|
|
|
|
|
android:orientation="vertical">
|
2016-02-27 23:05:23 +00:00
|
|
|
|
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
|
|
|
|
android:theme="@style/Toolbar"
|
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"/>
|
|
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
2017-10-03 18:13:29 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
|
|
|
android:layout_gravity="top|center" >
|
2016-02-27 23:05:23 +00:00
|
|
|
|
2017-10-03 18:13:29 +00:00
|
|
|
</FrameLayout>
|
2016-08-10 03:24:19 +00:00
|
|
|
|
2017-10-03 18:13:29 +00:00
|
|
|
</LinearLayout>
|