mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-04 02:05:16 +08:00
66 lines
2.7 KiB
XML
66 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="15dp"
|
|
android:paddingTop="15dp"
|
|
android:paddingRight="15dp">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="8.5dp"
|
|
android:layout_marginRight="8.5dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:lineSpacingExtra="6dp"
|
|
android:text="@string/when_errors_how_to_show_tip"
|
|
android:textSize="13sp" />
|
|
|
|
<RadioGroup
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
|
android:id="@+id/config_radio_0"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:checked="true"
|
|
android:singleLine="true"
|
|
android:text="@string/follow_global_config"
|
|
app:buttonTint="@color/colorPrimaryAccent" />
|
|
|
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
|
android:id="@+id/config_radio_1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:text="@string/show_errors_dialog"
|
|
app:buttonTint="@color/colorPrimaryAccent" />
|
|
|
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
|
android:id="@+id/config_radio_2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:text="@string/show_errors_notify"
|
|
app:buttonTint="@color/colorPrimaryAccent" />
|
|
|
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
|
android:id="@+id/config_radio_3"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:text="@string/show_errors_toast"
|
|
app:buttonTint="@color/colorPrimaryAccent" />
|
|
|
|
<com.google.android.material.radiobutton.MaterialRadioButton
|
|
android:id="@+id/config_radio_4"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:text="@string/show_nothing"
|
|
app:buttonTint="@color/colorPrimaryAccent" />
|
|
</RadioGroup>
|
|
</LinearLayout> |