mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-28 08:53:37 +00:00
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/zoom_buttons_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/nav_zoom_in"
|
|
style="@style/MwmWidget.M3.FAB.MapButton.Zoom"
|
|
android:tint="?iconTint"
|
|
app:srcCompat="@drawable/ic_plus"
|
|
app:shapeAppearanceOverlay="@style/ShapeAppearance.MapButton.Zoom.Minus"
|
|
android:layout_marginBottom="@dimen/margin_eighth"
|
|
android:contentDescription="@string/zoom_in"/>
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/nav_zoom_out"
|
|
style="@style/MwmWidget.M3.FAB.MapButton.Zoom"
|
|
android:tint="?iconTint"
|
|
app:srcCompat="@drawable/ic_minus"
|
|
app:shapeAppearanceOverlay="@style/ShapeAppearance.MapButton.Zoom.Plus"
|
|
android:contentDescription="@string/zoom_out"/>
|
|
</LinearLayout> |