2014-06-13 16:56:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2014-06-16 14:18:02 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-06-13 16:56:54 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-06-19 23:05:31 +02:00
|
|
|
android:orientation="horizontal">
|
2014-06-18 11:29:00 +02:00
|
|
|
<ImageView android:id="@+id/point_icon"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:padding="3dp"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"/>
|
2014-06-13 16:56:54 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
2014-06-18 11:29:00 +02:00
|
|
|
android:layout_marginLeft="6dp"
|
|
|
|
android:layout_width="0dp"
|
2014-06-13 16:56:54 +02:00
|
|
|
android:layout_height="wrap_content"
|
2014-06-18 11:29:00 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_weight="1"/>
|
2014-06-13 16:56:54 +02:00
|
|
|
|
|
|
|
<TextView
|
2014-06-18 11:29:00 +02:00
|
|
|
android:id="@+id/date_or_distance"
|
2014-06-13 16:56:54 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-06-18 11:29:00 +02:00
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_gravity="center_vertical"/>
|
2014-06-13 16:56:54 +02:00
|
|
|
|
2014-06-16 14:18:02 +02:00
|
|
|
</LinearLayout>
|