2020-10-31 19:45:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-12-11 19:22:43 +00:00
|
|
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-11-15 17:24:19 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
style="@style/BottomDialogCard">
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-11-15 17:24:19 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-11-15 17:24:19 +00:00
|
|
|
<TextView
|
|
|
|
android:text="@string/variant"
|
2020-12-11 19:22:43 +00:00
|
|
|
style="@style/BottomDialogCardTitle" />
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-11-15 17:24:19 +00:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-11-15 17:24:19 +00:00
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/variant_radiogroup"
|
2020-10-31 19:45:39 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-11-15 17:24:19 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="HardcodedText">
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-12-14 21:18:58 +00:00
|
|
|
<com.vanced.manager.ui.core.ThemedMaterialRadioButton
|
2020-10-31 19:45:39 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-11-15 17:24:19 +00:00
|
|
|
android:tag="nonroot"
|
|
|
|
android:text="nonroot"
|
2020-12-11 19:22:43 +00:00
|
|
|
android:textSize="18sp" />
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-12-14 21:18:58 +00:00
|
|
|
<com.vanced.manager.ui.core.ThemedMaterialRadioButton
|
2020-11-15 17:24:19 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:tag="root"
|
|
|
|
android:text="root"
|
2020-12-11 19:22:43 +00:00
|
|
|
android:textSize="18sp" />
|
2020-11-15 17:24:19 +00:00
|
|
|
</RadioGroup>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
2020-12-14 21:18:58 +00:00
|
|
|
<com.vanced.manager.ui.core.ThemedMaterialButton
|
2020-11-15 17:24:19 +00:00
|
|
|
android:id="@+id/variant_save"
|
|
|
|
android:text="@string/save"
|
2020-12-11 19:22:43 +00:00
|
|
|
style="@style/BottomDialogButtonStyle" />
|
2020-11-15 17:24:19 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|