5141f9f6da
This will not change in the layout, it's here just to better maintain the code.
32 lines
No EOL
1 KiB
XML
32 lines
No EOL
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<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" />
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_weight="1" />
|
|
|
|
<TextView
|
|
android:id="@+id/date_or_distance"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
</LinearLayout> |