34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/snackbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:consumeSystemWindowsInsets="start|end"
|
|
app:edgeToEdge="true"
|
|
app:fitSystemWindowsInsets="start|end">
|
|
|
|
<rikka.material.widget.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
style="?appBarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?colorActionBar"
|
|
app:subtitleTextAppearance="@android:style/TextAppearance.Material.Widget.Toolbar.Subtitle"
|
|
app:titleTextAppearance="@android:style/TextAppearance.Material.Widget.Toolbar.Title"
|
|
app:popupTheme="?actionBarPopupTheme" />
|
|
|
|
</rikka.material.widget.AppBarLayout>
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |