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"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2014-06-16 16:53:15 +02:00
|
|
|
android:orientation="vertical">
|
2014-06-13 16:56:54 +02:00
|
|
|
|
2014-06-16 14:18:02 +02:00
|
|
|
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
|
|
|
|
<TextView android:id="@+id/gpx_name"
|
2014-06-16 16:53:15 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:textSize="20sp"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/points_count"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
2014-06-13 16:56:54 +02:00
|
|
|
<Button android:id="@+id/done"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginRight="6dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="done"/>
|
2014-06-16 14:18:02 +02:00
|
|
|
</LinearLayout>
|
2014-06-13 16:56:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
<ListView android:id="@+id/pointsListView"
|
|
|
|
android:layout_width="fill_parent"
|
2014-06-16 16:53:15 +02:00
|
|
|
android:layout_height="fill_parent"/>
|
2014-06-13 16:56:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|