OsmAnd/OsmAnd/res/layout/mode_view.xml
2020-05-25 19:40:48 +03:00

24 lines
No EOL
925 B
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="@dimen/route_info_modes_height"
android:layout_height="@dimen/route_info_modes_height"
xmlns:tools="http://schemas.android.com/tools">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/app_mode_icon"
android:layout_width="@dimen/standard_icon_size"
android:layout_height="@dimen/standard_icon_size"
android:layout_gravity="center"
tools:src="@drawable/ic_dashboard"
android:background="?attr/dashboard_button" />
<View
android:id="@+id/selection"
android:layout_gravity="bottom"
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="@color/osmand_orange"
android:focusable="false" />
</FrameLayout>