mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-01 10:33:45 +00:00
34 lines
1.3 KiB
XML
34 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="?cardBackground">
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/MwmWidget.ToolbarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/MwmWidget.ToolbarTheme">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
app:tint="@color/image_view"
|
|
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>
|