2013-08-03 03:29:16 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-13 13:34:36 +02:00
|
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
2017-03-12 16:35:43 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="@dimen/list_item_height"
|
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="@dimen/list_content_padding"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:paddingRight="@dimen/list_content_padding"
|
|
|
|
android:paddingEnd="@dimen/list_content_padding"
|
|
|
|
android:paddingStart="@dimen/list_content_padding">
|
2015-04-21 01:22:30 +02:00
|
|
|
|
2020-05-15 09:58:37 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2015-04-21 01:22:30 +02:00
|
|
|
android:id="@+id/icon"
|
2015-04-21 01:33:37 +02:00
|
|
|
android:layout_width="wrap_content"
|
2015-04-21 01:22:30 +02:00
|
|
|
android:layout_height="@dimen/list_item_height"
|
|
|
|
android:scaleType="center"
|
2015-04-21 01:33:37 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
|
|
android:gravity="center_vertical"
|
2017-03-12 16:35:43 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2020-05-13 13:34:36 +02:00
|
|
|
osmand:srcCompat="@drawable/ic_action_settings"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:layout_marginEnd="@dimen/list_content_padding" />
|
2013-08-03 03:29:16 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
2017-03-12 16:35:43 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-04-19 16:34:51 +02:00
|
|
|
android:layout_weight="1"
|
2017-03-12 16:35:43 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-04-21 01:22:30 +02:00
|
|
|
android:gravity="center_vertical"
|
2017-03-12 16:35:43 +01:00
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:paddingBottom="6dp"
|
2013-08-03 03:29:16 +02:00
|
|
|
android:text="@string/layer_poi"
|
2015-04-19 16:34:51 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size" />
|
2013-08-03 03:29:16 +02:00
|
|
|
|
2017-03-12 16:35:43 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:paddingBottom="6dp"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:paddingLeft="@dimen/content_padding"
|
2017-03-12 16:35:43 +01:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:visibility="gone"
|
|
|
|
android:paddingStart="@dimen/content_padding" />
|
2017-03-12 16:35:43 +01:00
|
|
|
|
2020-05-15 13:20:01 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatCheckBox
|
2016-03-21 15:55:09 +01:00
|
|
|
android:id="@+id/toggle_item"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
2015-04-19 23:14:25 +02:00
|
|
|
android:layout_height="@dimen/list_item_height"
|
2015-04-19 16:34:51 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:focusable="false"
|
|
|
|
android:gravity="center_vertical" />
|
2013-08-03 03:29:16 +02:00
|
|
|
|
2012-06-12 05:48:32 +02:00
|
|
|
</LinearLayout>
|