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
|
|
|
|
android:src="@drawable/av_download"
|
|
|
|
android:id="@+id/down"
|
|
|
|
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"
|
|
|
|
android:textSize="18sp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:textColor="@color/color_black"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:src="@drawable/av_upload"
|
|
|
|
android:id="@+id/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>
|