2014-10-25 16:18:12 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:minHeight="40dp"
|
|
|
|
android:layout_marginBottom="5dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/waypoint_icon"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:text="@string/search_radius_proximity"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size" />
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/descr"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
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/sherpafy_selection"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginRight="8dp" />
|
2014-10-25 16:18:12 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|