52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="8dip"
|
|
android:paddingTop="6dip"
|
|
android:paddingBottom="6dip">
|
|
|
|
<RadioButton
|
|
android:id="@+id/b1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:id="@+id/tv1"
|
|
android:layout_toRightOf="@+id/b1"
|
|
android:text="Normal Flow"
|
|
android:textStyle="bold"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:id="@+id/tv2"
|
|
android:layout_toRightOf="@+id/b1"
|
|
android:layout_below="@+id/tv1"
|
|
android:text="Use this for most bugs for the best beug reporting experience\n"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<RadioButton
|
|
android:id="@+id/b2"
|
|
android:layout_below="@+id/tv2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:id="@+id/tv3"
|
|
android:text="Emergency report"
|
|
android:layout_toRightOf="@+id/b2"
|
|
android:layout_below="@+id/tv2"
|
|
android:textStyle="bold"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:id="@+id/tv4"
|
|
android:text="Use this for bugs about device unresponsiveness or slowness this is a striped down experience to capture the bug in and uninterrupted device state."
|
|
android:layout_toRightOf="@+id/b2"
|
|
android:layout_below="@+id/tv3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
</RelativeLayout>
|