58 lines
No EOL
1.7 KiB
XML
58 lines
No EOL
1.7 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" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="75dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="5dp"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/cumulative_distance"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="23sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/cumulative_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="23sp" />
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/direction"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="70dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="5dp"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/distance"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="23sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="23sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text=""
|
|
android:textSize="23sp" >
|
|
</TextView>
|
|
|
|
</LinearLayout> |