OsmAnd/OsmAnd/res/layout/simple_list_menu_item.xml

21 lines
861 B
XML
Raw Normal View History

2015-08-22 14:55:28 +02:00
<?xml version="1.0" encoding="utf-8"?>
2015-09-04 18:29:28 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2015-09-23 15:12:41 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2015-10-05 16:25:06 +02:00
android:layout_height="@dimen/list_item_height">
2015-09-04 18:29:28 +02:00
2016-04-05 14:23:06 +02:00
<TextView
2015-09-04 18:29:28 +02:00
android:id="@+id/title"
2015-09-23 15:12:41 +02:00
android:layout_width="wrap_content"
2016-04-05 14:23:06 +02:00
android:layout_height="wrap_content"
android:minHeight="@dimen/list_item_height"
2015-09-04 18:29:28 +02:00
android:layout_gravity="center_vertical"
android:drawablePadding="24dp"
android:gravity="center_vertical"
android:paddingLeft="16dp"
2016-04-05 15:51:54 +02:00
android:textAppearance="@style/TextAppearance.ListItemTitle"
2016-04-05 14:23:06 +02:00
android:textStyle="normal"
2015-09-04 18:29:28 +02:00
tools:drawableLeft="@drawable/ic_action_search_dark"
2015-09-23 15:12:41 +02:00
tools:text="@string/layer_poi"/>
2015-09-04 18:29:28 +02:00
</LinearLayout>