2016-02-20 11:07:33 +01:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:background="?attr/pstsTabBackground"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/closeButton"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/shared_string_close"
|
2016-02-20 11:07:33 +01:00
|
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
|
|
android:layout_width="52dp"
|
|
|
|
android:layout_height="52dp"
|
|
|
|
android:src="@drawable/ic_action_mode_back"/>
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:text="@string/select_map_marker"
|
|
|
|
android:textColor="@color/color_white"
|
|
|
|
android:textSize="@dimen/default_list_text_size_large"
|
|
|
|
android:textStyle="bold"
|
|
|
|
app:typeface="@string/font_roboto_regular"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-02-20 14:35:03 +01:00
|
|
|
android:divider="?attr/dashboard_divider"
|
|
|
|
android:dividerHeight="1dp"
|
2016-02-20 11:07:33 +01:00
|
|
|
android:drawSelectorOnTop="true"/>
|
|
|
|
|
2016-02-20 14:35:03 +01:00
|
|
|
<include layout="@layout/card_bottom_divider"/>
|
|
|
|
|
2016-02-20 11:07:33 +01:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|