66 lines
2.1 KiB
XML
66 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:stretchColumns="1">
|
|
|
|
<TextView
|
|
android:id="@+id/DescriptionTextTop"
|
|
android:textSize="@dimen/default_list_text_size_large"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:gravity="center_horizontal"
|
|
android:text="@string/send_files_to_osm" />
|
|
|
|
<TableRow android:layout_width="fill_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/TextView"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:text="@string/shared_string_description" />
|
|
|
|
<EditText
|
|
android:id="@+id/memory_size"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:minLines="3"
|
|
android:text="" />
|
|
</TableRow>
|
|
|
|
<TableRow android:layout_width="fill_parent">
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:text="@string/gpx_tags_txt" />
|
|
|
|
<EditText
|
|
android:id="@+id/TagsText"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:text="osmand" />
|
|
</TableRow>
|
|
|
|
<TableRow android:layout_width="fill_parent">
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:text="@string/gpx_visibility_txt" />
|
|
|
|
<Spinner
|
|
android:id="@+id/Visibility"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp" />
|
|
</TableRow>
|
|
|
|
|
|
</TableLayout>
|