2010-07-21 15:03:11 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-07-14 15:39:15 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/ValidateTextView"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text=""
|
|
|
|
android:textColor="@color/color_invalid"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_desc_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
2013-07-14 15:39:15 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/LinearLayout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="horizontal">
|
2013-07-14 15:39:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginTop="5dp">
|
2013-07-14 15:39:15 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="vertical">
|
2013-07-14 15:39:15 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content">
|
2013-07-14 15:39:15 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:text="@string/route_from"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size" />
|
2013-07-14 15:39:15 +02:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/FromSpinner"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
2013-07-14 17:30:04 +02:00
|
|
|
android:layout_marginRight="5dp"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"/>
|
2013-07-14 15:39:15 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
2013-07-14 17:30:04 +02:00
|
|
|
android:id="@+id/ViaView"
|
2013-07-14 15:39:15 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:gravity="left"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
2013-07-14 17:30:04 +02:00
|
|
|
android:layout_width="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content">
|
2013-07-14 17:30:04 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:text="@string/route_to"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size">
|
2014-11-17 16:25:17 +01:00
|
|
|
|
2013-07-14 17:30:04 +02:00
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/ToSpinner"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginRight="5dp"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size" />
|
2013-07-14 17:30:04 +02:00
|
|
|
</LinearLayout>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
2013-07-14 15:39:15 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
2013-12-25 21:44:55 +01:00
|
|
|
</LinearLayout>
|