OsmAnd/OsmAnd/res/layout/mode_view.xml

24 lines
863 B
XML
Raw Normal View History

2015-04-19 16:34:51 +02:00
<?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">
2015-04-19 16:34:51 +02:00
<ImageView
android:id="@+id/app_mode_icon"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:src="@drawable/ic_dashboard_dark"
2015-04-19 16:34:51 +02:00
android:background="?attr/dashboard_button"
android:scaleType="center"/>
2015-04-19 16:34:51 +02:00
<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>