2010-05-28 15:19:56 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-23 00:54:40 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-12-17 16:32:31 +01:00
|
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
2015-03-06 20:16:44 +01:00
|
|
|
android:background="?attr/expandable_list_item_background"
|
2015-02-02 18:01:14 +01:00
|
|
|
android:paddingLeft="@dimen/list_content_padding"
|
|
|
|
android:paddingRight="@dimen/list_content_padding"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
|
|
|
<net.osmand.view.ExpandableLinearLayout
|
|
|
|
custom:maxVisibleWidth="800dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/TextView"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_desc_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:text="@string/navigate_point_top_text"></TextView>
|
|
|
|
|
|
|
|
<TableLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:stretchColumns="1">
|
|
|
|
|
2014-12-06 22:12:10 +01:00
|
|
|
<TableRow android:layout_width="fill_parent" android:id="@+id/lat_row">
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/navigate_point_latitude"></TextView>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/LatitudeEdit"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-06-02 00:15:56 +02:00
|
|
|
android:inputType="numberSigned|numberDecimal|time"></EditText>
|
2014-11-17 16:25:17 +01:00
|
|
|
</TableRow>
|
|
|
|
|
2014-12-06 22:12:10 +01:00
|
|
|
<TableRow android:layout_width="fill_parent" android:id="@+id/lon_row">
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/navigate_point_longitude"></TextView>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/LongitudeEdit"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-06-02 00:15:56 +02:00
|
|
|
android:inputType="numberSigned|numberDecimal|time"></EditText>
|
2014-11-17 16:25:17 +01:00
|
|
|
</TableRow>
|
2014-12-06 22:12:10 +01:00
|
|
|
<TableRow android:layout_width="fill_parent" android:id="@+id/northing_row">
|
2014-11-17 16:25:17 +01:00
|
|
|
|
2014-12-06 22:12:10 +01:00
|
|
|
<TextView
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-12-06 22:12:10 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/navigate_point_northing"></TextView>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/NorthingEdit"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-06-02 00:15:56 +02:00
|
|
|
android:inputType="numberSigned|numberDecimal|time"></EditText>
|
2014-12-06 22:12:10 +01:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow android:layout_width="fill_parent" android:id="@+id/easting_row">
|
|
|
|
|
|
|
|
<TextView
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-12-06 22:12:10 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/navigate_point_easting"></TextView>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/EastingEdit"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-06-02 00:15:56 +02:00
|
|
|
android:inputType="numberSigned|numberDecimal|time"></EditText>
|
2014-12-06 22:12:10 +01:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow android:layout_width="fill_parent" android:id="@+id/zone_row">
|
|
|
|
|
|
|
|
<TextView
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-12-06 22:12:10 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/navigate_point_zone"></TextView>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/ZoneEdit"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"></EditText>
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow android:layout_width="fill_parent" >
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/navigate_point_format"></TextView>
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/Format"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"></Spinner>
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/ValidateTextView"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text=""
|
|
|
|
android:gravity="center"
|
|
|
|
android:textColor="@color/color_invalid"></TextView>
|
|
|
|
</TableLayout>
|
|
|
|
|
|
|
|
</net.osmand.view.ExpandableLinearLayout>
|
|
|
|
</LinearLayout>
|
2015-06-21 14:00:01 +02:00
|
|
|
</ScrollView>
|