32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<org.oxycblt.auxio.ui.coordinator.EdgeCoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<org.oxycblt.auxio.ui.coordinator.EdgeAppBarLayout
|
|
android:id="@+id/settings_appbar"
|
|
style="@style/Widget.Auxio.AppBarLayout"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
app:liftOnScroll="true">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/settings_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:navigationIcon="@drawable/ic_back_24"
|
|
app:title="@string/set_title" />
|
|
|
|
</org.oxycblt.auxio.ui.coordinator.EdgeAppBarLayout>
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/settings_list_fragment"
|
|
android:name="org.oxycblt.auxio.settings.SettingsListFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
|
|
|
</org.oxycblt.auxio.ui.coordinator.EdgeCoordinatorLayout>
|