mihon/app/src/main/res/layout/action_toolbar.xml

35 lines
1.2 KiB
XML
Raw Normal View History

<?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"
2020-04-25 10:49:42 -04:00
xmlns:tools="http://schemas.android.com/tools"
2021-04-16 22:26:41 -04:00
android:id="@+id/action_toolbar"
android:layout_width="match_parent"
2020-04-25 10:49:42 -04:00
android:layout_height="wrap_content"
android:clipToPadding="false"
android:padding="8dp"
android:visibility="gone"
tools:visibility="visible">
2020-04-25 10:49:42 -04:00
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
2020-04-25 10:49:42 -04:00
android:layout_height="wrap_content"
2021-03-13 17:18:22 -05:00
app:cardCornerRadius="@dimen/dialog_radius">
2020-04-25 10:49:42 -04:00
<com.google.android.material.appbar.MaterialToolbar
android:layout_width="match_parent"
2020-04-25 10:49:42 -04:00
android:layout_height="?attr/actionBarSize"
android:layout_gravity="bottom"
app:contentInsetEnd="8dp"
app:contentInsetStart="8dp">
2020-04-25 10:49:42 -04:00
<androidx.appcompat.widget.ActionMenuView
2021-04-16 22:26:41 -04:00
android:id="@+id/menu"
2020-04-25 10:49:42 -04:00
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.google.android.material.appbar.MaterialToolbar>
</androidx.cardview.widget.CardView>
</FrameLayout>