2020-03-08 18:57:50 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout 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="wrap_content">
|
|
|
|
|
2020-03-13 00:14:43 +01:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2020-03-08 21:37:49 +01:00
|
|
|
android:id="@+id/common_action_toolbar"
|
2020-03-08 18:57:50 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:theme="?attr/actionBarTheme"
|
|
|
|
android:visibility="gone"
|
2020-03-13 00:14:43 +01:00
|
|
|
android:elevation="2dp"
|
2020-03-08 18:57:50 +01:00
|
|
|
app:contentInsetStart="8dp"
|
|
|
|
app:contentInsetEnd="8dp">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.ActionMenuView
|
2020-03-08 21:37:49 +01:00
|
|
|
android:id="@+id/common_action_menu"
|
2020-03-08 18:57:50 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2020-03-13 00:14:43 +01:00
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
2020-03-08 18:57:50 +01:00
|
|
|
|
|
|
|
</FrameLayout>
|