0
0
Fork 0
mirror of https://github.com/YTVanced/VancedManager synced 2024-11-10 12:55:06 +00:00
VancedManager/app/src/main/res/layout/dialog_manager_variant.xml

47 lines
1.8 KiB
XML
Raw Normal View History

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"
xmlns:tools="http://schemas.android.com/tools"
style="@style/BottomDialogCard">
2020-10-31 19:45:39 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2020-10-31 19:45:39 +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
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
2020-10-31 19:45:39 +00:00
<RadioGroup
android:id="@+id/variant_radiogroup"
2020-10-31 19:45:39 +00:00
android:layout_width="match_parent"
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"
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
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" />
</RadioGroup>
</androidx.core.widget.NestedScrollView>
2020-12-14 21:18:58 +00:00
<com.vanced.manager.ui.core.ThemedMaterialButton
android:id="@+id/variant_save"
android:text="@string/save"
2020-12-11 19:22:43 +00:00
style="@style/BottomDialogButtonStyle" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>