2015-08-21 16:48:27 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2016-02-19 17:29:22 +01:00
|
|
|
|
2016-02-24 14:50:12 +01:00
|
|
|
<LinearLayout
|
2016-11-03 09:45:19 +01:00
|
|
|
android:id="@+id/osm_note_header"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-03 09:45:19 +01:00
|
|
|
android:orientation="vertical">
|
2016-02-19 17:29:22 +01:00
|
|
|
|
2016-02-24 14:50:12 +01:00
|
|
|
<TextView
|
2016-11-03 09:45:19 +01:00
|
|
|
android:layout_width="match_parent"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:layout_height="wrap_content"
|
2016-11-03 09:45:19 +01:00
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:text="@string/upload_osm_note_description"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
2016-02-19 17:29:22 +01:00
|
|
|
|
2016-11-03 09:45:19 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:orientation="horizontal">
|
2016-02-19 17:29:22 +01:00
|
|
|
|
2016-11-03 09:45:19 +01:00
|
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/upload_anonymously"
|
|
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
|
|
|
|
|
|
|
<android.support.v7.widget.SwitchCompat
|
|
|
|
android:id="@+id/upload_anonymously_switch"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:background="@color/divider_color"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2016-02-17 17:00:54 +01:00
|
|
|
|
2016-02-24 14:50:12 +01:00
|
|
|
<TextView
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/message_label"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-03 09:45:19 +01:00
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:text="@string/osb_comment_dialog_message"/>
|
2016-02-17 17:00:54 +01:00
|
|
|
|
2016-02-24 14:50:12 +01:00
|
|
|
<EditText
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/message_field"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-03 09:45:19 +01:00
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:minLines="1"/>
|
2016-02-17 17:00:54 +01:00
|
|
|
|
2016-02-24 14:50:12 +01:00
|
|
|
<CheckBox
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/close_change_set_checkbox"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-03 09:45:19 +01:00
|
|
|
android:layout_marginLeft="24dp"
|
|
|
|
android:layout_marginRight="24dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
2016-02-24 14:50:12 +01:00
|
|
|
android:text="@string/close_changeset"/>
|
2016-02-17 17:00:54 +01:00
|
|
|
|
2016-02-26 17:11:47 +01:00
|
|
|
<include layout="@layout/osm_user_login_details"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
</LinearLayout>
|