5141f9f6da
This will not change in the layout, it's here just to better maintain the code.
52 lines
No EOL
1.5 KiB
XML
52 lines
No EOL
1.5 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="50dp"
|
|
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" />
|
|
|
|
<TextView
|
|
android:id="@+id/cumulative_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/direction"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="50dp"
|
|
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" />
|
|
|
|
<TextView
|
|
android:id="@+id/time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text=""></TextView>
|
|
|
|
</LinearLayout> |