2011-05-08 14:58:30 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
2011-05-08 14:58:30 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<net.osmand.access.ExplorableTextView
|
|
|
|
android:id="@+id/TipDescription"
|
|
|
|
style="@style/ListText"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="fill_horizontal"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:text="" />
|
2011-05-08 14:58:30 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<!-- <TextView android:text="@string/poi_dialog_other_tags_message" android:id="@+id/TextView" android:layout_marginLeft="5dp"
|
|
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content" /> -->
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/LinearLayout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:gravity="bottom|center"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/PreviousButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minWidth="70dp"
|
2015-03-08 09:34:54 +01:00
|
|
|
android:text="@string/shared_string_previous" />
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/NextButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minWidth="70dp"
|
2015-03-08 09:39:39 +01:00
|
|
|
android:text="@string/shared_string_next" />
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/CloseButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minWidth="70dp"
|
2015-03-08 14:57:01 +01:00
|
|
|
android:text="@string/shared_string_close" />
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|