mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-09 05:44:34 +00:00
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
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:background="?appBackground">
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/MwmWidget.M3.ToolbarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
app:tint="?iconTint"
|
|
android:id="@+id/save"
|
|
app:srcCompat="@drawable/ic_done"
|
|
android:layout_width="?actionBarSize"
|
|
android:layout_height="?actionBarSize"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:layout_gravity="end|center_vertical"
|
|
android:scaleType="centerInside"
|
|
android:contentDescription="@string/save" />
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
|
<FrameLayout
|
|
style="@style/MwmWidget.FrameLayout.Elevation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/toolbar">
|
|
<include layout="@layout/edit_bookmark_common" />
|
|
</FrameLayout>
|
|
</RelativeLayout>
|