OsmAnd/OsmAnd/res/layout/search_fav_list_item.xml

31 lines
1.3 KiB
XML
Raw Normal View History

2017-04-08 16:36:32 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:background="?attr/bg_color"
android:layout_height="@dimen/list_item_height">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="@dimen/list_item_height"
android:layout_gravity="center_vertical"
android:drawablePadding="@dimen/content_padding"
2017-04-08 16:36:32 +02:00
android:gravity="center_vertical"
android:layout_marginLeft="@dimen/content_padding"
android:layout_marginStart="@dimen/content_padding"
2017-04-08 16:36:32 +02:00
android:textAppearance="@style/TextAppearance.ListItemTitle"
android:textStyle="normal"
tools:drawableLeft="@drawable/ic_action_search_dark"
2020-02-24 15:17:23 +01:00
tools:text="@string/layer_poi"
tools:drawableStart="@drawable/ic_action_search_dark" />
2017-04-08 16:36:32 +02:00
</LinearLayout>
</LinearLayout>