2014-06-13 16:56:54 +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:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/gpx_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:ellipsize="end"
|
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/points_count"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:minWidth="16dp"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size" />
|
2014-06-16 16:53:15 +02:00
|
|
|
|
2014-06-16 14:18:02 +02:00
|
|
|
</LinearLayout>
|
2014-06-13 16:56:54 +02:00
|
|
|
|
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2015-03-06 21:16:08 +01:00
|
|
|
android:choiceMode="singleChoice"/>
|
2014-06-13 16:56:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|