OsmAnd/OsmAnd/res/layout/simple_list_menu_item.xml

26 lines
1.1 KiB
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:osmand="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="@dimen/list_item_height"
android:focusable="false"
android:focusableInTouchMode="false">
2015-09-04 18:29:28 +02:00
<net.osmand.plus.widgets.TextViewEx
android:id="@+id/title"
2015-09-23 15:12:41 +02:00
android:layout_width="wrap_content"
2015-09-04 18:29:28 +02:00
android:layout_height="@dimen/list_item_height"
android:layout_gravity="center_vertical"
android:drawablePadding="24dp"
2015-09-23 15:12:41 +02:00
android:focusable="false"
android:focusableInTouchMode="false"
2015-09-04 18:29:28 +02:00
android:gravity="center_vertical"
android:paddingLeft="16dp"
android:textColor="?android:textColorPrimary"
android:textSize="@dimen/default_list_text_size"
osmand:typeface="@string/font_roboto_medium"
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>