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"
|
|
|
|
android:id="@+id/LinearLayout1"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_marginTop="2dip"
|
|
|
|
android:layout_marginLeft="5dip"
|
|
|
|
android:layout_marginRight="5dip"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:weightSum="1"
|
|
|
|
android:background="@color/color_white">
|
|
|
|
|
|
|
|
<ImageButton
|
2015-03-30 01:09:49 +02:00
|
|
|
android:src="@drawable/ic_action_down_dark"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:id="@+id/down"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/shared_string_move_down"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2013-08-03 03:29:16 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2014-10-26 16:46:47 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2013-08-03 03:29:16 +02:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/layer_poi"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:textColor="@color/color_black"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<ImageButton
|
2015-03-30 01:09:49 +02:00
|
|
|
android:src="@drawable/ic_action_up_dark"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:id="@+id/up"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/shared_string_move_up"
|
2013-08-03 03:29:16 +02:00
|
|
|
android:layout_width="wrap_content"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2013-08-03 03:29:16 +02:00
|
|
|
|
2012-12-16 18:09:47 +01:00
|
|
|
</LinearLayout>
|