2012-06-23 01:43:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="vertical">
|
2012-06-23 01:43:49 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/parkTime"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/osmand_parking_position_description_add" />
|
2012-07-18 00:51:36 +02:00
|
|
|
|
2012-07-12 02:00:29 +02:00
|
|
|
<LinearLayout
|
2012-06-23 01:43:49 +02:00
|
|
|
android:layout_width="wrap_content"
|
2012-07-12 02:00:29 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_gravity="center_horizontal">
|
2012-07-12 02:00:29 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/osmand_parking_hours" />
|
|
|
|
|
|
|
|
<TimePicker
|
|
|
|
android:id="@+id/parking_time_picker"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/osmand_parking_minutes" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2012-06-23 01:43:49 +02:00
|
|
|
|
2012-06-25 00:07:48 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/check_event_in_calendar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checked="true"
|
|
|
|
android:text="@string/osmand_parking_add_event" />
|
|
|
|
|
2012-06-23 01:43:49 +02:00
|
|
|
</LinearLayout>
|