2016-01-02 13:23:24 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-01-03 15:48:44 +11:00
|
|
|
<ScrollView
|
2016-01-02 13:23:24 +11:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
>
|
|
|
|
|
2016-01-03 15:48:44 +11:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
2016-01-02 13:23:24 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-01-03 15:48:44 +11:00
|
|
|
android:paddingLeft="24dp"
|
|
|
|
android:paddingRight="24dp"
|
|
|
|
android:paddingBottom="24dp"
|
|
|
|
android:paddingTop="20dp"
|
|
|
|
>
|
2016-01-02 13:23:24 +11:00
|
|
|
|
2016-01-03 15:48:44 +11:00
|
|
|
<TextView
|
|
|
|
android:id="@android:id/text1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/crash_dialog_text"
|
|
|
|
/>
|
2016-01-02 13:23:24 +11:00
|
|
|
|
2016-01-03 15:48:44 +11:00
|
|
|
<TextView
|
|
|
|
android:id="@android:id/text2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:text="@string/crash_dialog_comment_prompt"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@android:id/input"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2016-01-02 13:23:24 +11:00
|
|
|
|
2016-01-03 15:48:44 +11:00
|
|
|
</ScrollView>
|