Pixelcat-App-Android/app/src/main/res/layout/activity_settings.xml

29 lines
1.2 KiB
XML
Raw Normal View History

2020-09-21 16:46:12 +02:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-06-12 15:44:45 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
2020-09-21 16:46:12 +02:00
android:layout_height="match_parent">
2020-06-12 15:44:45 +02:00
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/settingsAppbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/pixelcat_gradient">
<androidx.appcompat.widget.Toolbar
android:id="@+id/settingsToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:navigationIcon="@drawable/ic_arrow_back"
app:title="@string/title_settings"
app:titleTextAppearance="@style/TextAppearanceToolbar"
app:titleTextColor="#fff" />
</com.google.android.material.appbar.AppBarLayout>
2020-09-21 16:46:12 +02:00
<androidx.fragment.app.FragmentContainerView
2020-06-12 15:44:45 +02:00
android:id="@+id/settings"
android:layout_width="match_parent"
2020-09-21 16:46:12 +02:00
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>