mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-22 19:25:11 +00:00
minor changes in language selection fragment
This commit is contained in:
parent
bcf0461e35
commit
ff9f05f969
2 changed files with 25 additions and 2 deletions
|
@ -2,8 +2,10 @@
|
|||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="match_parent">
|
||||
android:layout_width="match_parent"
|
||||
tools:ignore="HardcodedText">
|
||||
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_width="match_parent"
|
||||
|
@ -17,7 +19,15 @@
|
|||
<RadioGroup
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:checkedButton="@id/Bahasa_Indonesia">
|
||||
android:checkedButton="@id/English">
|
||||
|
||||
<com.google.android.material.radiobutton.MaterialRadioButton
|
||||
android:id="@+id/English"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/exo_semibold"
|
||||
android:text="English (default)"
|
||||
android:textSize="18sp" />
|
||||
|
||||
<com.google.android.material.radiobutton.MaterialRadioButton
|
||||
android:id="@+id/Bahasa_Indonesia"
|
||||
|
|
|
@ -29,6 +29,19 @@
|
|||
android:text="Choose your preferred language for Vanced"
|
||||
app:layout_constraintEnd_toEndOf="parent"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/install_language_note"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/install_language_title"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:textSize="15sp"
|
||||
android:fontFamily="@font/exo_semibold"
|
||||
android:text="Note: if you install anything other than English, English will still be installed as an additional language" />
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/language_choose_frame"
|
||||
android:layout_width="match_parent"
|
||||
|
|
Loading…
Reference in a new issue