2017-08-03 10:48:26 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/gpx_name_et"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
2017-08-18 09:32:57 +02:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2017-08-03 10:48:26 +02:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:inputType="text"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/file_exists_text_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
2017-08-18 09:32:57 +02:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2017-08-03 10:48:26 +02:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:text="@string/file_with_name_already_exists"
|
|
|
|
android:textColor="@color/marker_red"
|
2017-08-03 11:51:06 +02:00
|
|
|
android:visibility="invisible"/>
|
2017-08-03 10:48:26 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2017-08-03 11:51:06 +02:00
|
|
|
android:layout_marginTop="8dp"
|
2017-08-03 10:48:26 +02:00
|
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp">
|
|
|
|
|
|
|
|
<android.support.v7.widget.SwitchCompat
|
|
|
|
android:id="@+id/toggle_show_on_map"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginStart="16dp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toLeftOf="@id/toggle_row_toggle"
|
|
|
|
android:layout_toStartOf="@id/toggle_row_toggle"
|
|
|
|
android:text="@string/show_on_map_after_saving"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|