2018-04-06 18:06:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-04-12 12:39:27 +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="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:orientation="vertical">
|
2018-04-06 18:06:04 +02:00
|
|
|
|
2018-04-12 12:39:27 +02:00
|
|
|
<View
|
|
|
|
android:id="@+id/upper_row_divider"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?attr/wikivoyage_card_divider_color" />
|
2018-04-11 17:49:07 +02:00
|
|
|
|
2018-04-12 12:39:27 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2018-04-11 17:49:07 +02:00
|
|
|
|
2018-04-12 12:39:27 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/item_label"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="@dimen/bottom_sheet_list_item_height"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="@dimen/bottom_sheet_content_margin"
|
|
|
|
android:layout_marginStart="@dimen/bottom_sheet_content_margin"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="@dimen/bottom_sheet_content_margin"
|
|
|
|
android:gravity="start|center_vertical"
|
|
|
|
android:textSize="@dimen/default_list_text_size"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
|
|
tools:drawableStart="@drawable/ic_action_list_header"
|
|
|
|
tools:text="@string/shared_string_contents" />
|
2018-04-11 17:49:07 +02:00
|
|
|
|
2018-04-12 12:42:08 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/explist_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:paddingLeft="@dimen/list_content_padding"
|
|
|
|
android:paddingRight="@dimen/list_content_padding"
|
2018-04-15 14:03:38 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-04-12 12:42:08 +02:00
|
|
|
android:scaleType="center"
|
2018-04-16 21:17:45 +02:00
|
|
|
android:visibility="gone"
|
2018-04-12 12:42:08 +02:00
|
|
|
tools:src="@drawable/ic_action_arrow_up" />
|
2018-04-11 17:49:07 +02:00
|
|
|
|
2018-04-12 12:39:27 +02:00
|
|
|
</LinearLayout>
|
2018-04-11 17:49:07 +02:00
|
|
|
|
2018-04-06 18:06:04 +02:00
|
|
|
</LinearLayout>
|