2016-10-01 20:52:19 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-19 11:49:58 +02:00
|
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
2016-10-01 20:52:19 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-23 20:23:40 +01:00
|
|
|
android:orientation="vertical">
|
2016-10-01 20:52:19 +02:00
|
|
|
|
2017-03-23 20:23:40 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:minHeight="60dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
android:src="@drawable/ic_action_search_dark"/>
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textColor="?attr/color_dialog_buttons"
|
|
|
|
android:textSize="@dimen/default_sub_text_size"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2016-10-01 20:52:19 +02:00
|
|
|
|
2017-03-23 20:23:40 +01:00
|
|
|
<View
|
|
|
|
android:id="@+id/divider"
|
2016-10-01 20:52:19 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-03-23 20:23:40 +01:00
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginLeft="56dp"
|
|
|
|
android:background="?attr/dashboard_divider"
|
|
|
|
android:visibility="gone"/>
|
2016-10-01 20:52:19 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|