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"
|
|
|
|
android:orientation="vertical" >
|
2013-10-23 21:59:36 +02:00
|
|
|
<TextView android:id="@+id/ValidateTextView" android:textSize="16sp" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
|
|
android:text="" android:gravity="center" android:textColor="@color/color_invalid"></TextView>
|
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"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginTop="5dp" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:text="@string/route_from"
|
|
|
|
android:textSize="18sp" >
|
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<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"
|
|
|
|
android:textSize="18sp" >
|
2013-07-14 15:39:15 +02:00
|
|
|
</Spinner>
|
|
|
|
</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"
|
|
|
|
android:textSize="18sp" />
|
2013-12-26 23:22:46 +01:00
|
|
|
|
2013-07-14 17:30:04 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:text="@string/route_to"
|
|
|
|
android:textSize="18sp" >
|
2013-12-26 23:22:46 +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"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:textSize="18sp" >
|
|
|
|
</Spinner>
|
|
|
|
</LinearLayout>
|
2014-01-19 21:29:11 +01:00
|
|
|
|
2013-07-14 15:39:15 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
2013-12-25 21:44:55 +01:00
|
|
|
</LinearLayout>
|