VancedManager/app/src/main/res/layout/fragment_vanced_theme_selec...

55 lines
2.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<com.vanced.manager.ui.core.SlidingConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
2020-04-22 09:41:18 +00:00
android:layout_height="match_parent">
2020-04-22 09:41:18 +00:00
<com.google.android.material.card.MaterialCardView
2020-05-13 18:31:13 +00:00
style="@style/InstallMaterialCard"
2020-04-22 09:41:18 +00:00
app:layout_constraintTop_toTopOf="parent">
2020-05-11 17:09:56 +00:00
<LinearLayout
android:layout_width="match_parent"
2020-05-11 17:09:56 +00:00
android:layout_height="wrap_content"
android:orientation="vertical">
2020-04-22 09:41:18 +00:00
<TextView
2020-05-13 18:31:13 +00:00
style="@style/InstallCardTitle"
2020-04-22 09:41:18 +00:00
android:text="@string/choose_preferred_theme" />
2020-04-22 09:41:18 +00:00
<RadioGroup
2020-05-23 17:54:00 +00:00
android:id="@+id/theme_radiogroup"
android:layout_width="match_parent"
2020-08-04 10:02:36 +00:00
android:layout_height="wrap_content">
2020-05-05 21:33:40 +00:00
<com.google.android.material.radiobutton.MaterialRadioButton
2020-04-22 09:41:18 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:text="@string/install_light_dark"
2020-05-24 07:57:48 +00:00
android:tag="dark"
2020-04-22 09:41:18 +00:00
android:fontFamily="@font/exo_semibold"/>
2020-05-05 21:33:40 +00:00
<com.google.android.material.radiobutton.MaterialRadioButton
2020-04-22 09:41:18 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:fontFamily="@font/exo_semibold"
2020-05-24 07:57:48 +00:00
android:tag="black"
2020-04-22 09:41:18 +00:00
android:text="@string/install_light_black"/>
</RadioGroup>
2020-05-05 21:33:40 +00:00
<com.google.android.material.button.MaterialButton
2020-05-13 18:31:13 +00:00
style="@style/InstallButtonStyle"
2020-04-22 09:41:18 +00:00
android:id="@+id/vanced_next_to_variant"
android:text="@string/next"
2020-05-13 18:31:13 +00:00
app:icon="@drawable/ic_keyboard_next" />
2020-05-11 17:09:56 +00:00
</LinearLayout>
2020-04-22 09:41:18 +00:00
</com.google.android.material.card.MaterialCardView>
2020-08-25 09:05:20 +00:00
</com.vanced.manager.ui.core.SlidingConstraintLayout>