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

82 lines
3.3 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-05-16 17:31:31 +00:00
android:layout_height="match_parent"
android:layout_marginBottom="12dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="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="match_parent"
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_language" />
2020-04-22 09:41:18 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-05-11 17:09:56 +00:00
android:layout_marginStart="4dp"
android:layout_marginEnd="4dp"
2020-04-22 09:41:18 +00:00
android:fontFamily="@font/exo_semibold"
2020-05-16 17:31:31 +00:00
android:text="@string/choose_preferred_language_note"
android:textSize="13sp" />
2020-04-22 09:41:18 +00:00
<FrameLayout
android:layout_width="match_parent"
2020-05-16 17:31:31 +00:00
android:layout_height="0dp"
android:layout_marginEnd="2dp"
android:layout_weight="1">
2020-08-25 09:05:20 +00:00
<androidx.core.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent"
android:layout_width="match_parent"
2020-08-25 09:05:20 +00:00
android:fillViewport="true"
tools:ignore="HardcodedText">
<LinearLayout
android:id="@+id/lang_button_ll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.material.checkbox.MaterialCheckBox
android:id="@+id/en"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:buttonTint="?colorDisabled"
android:fontFamily="@font/exo_semibold"
android:text="English"
android:tag="en"
android:textSize="18sp"
android:checked="true"
android:clickable="false"/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</FrameLayout>
2020-04-22 09:41:18 +00:00
2020-05-05 21:33:40 +00:00
<com.google.android.material.button.MaterialButton
2020-04-22 09:41:18 +00:00
android:id="@+id/vanced_install_finish"
2020-05-16 17:31:31 +00:00
style="@style/InstallButtonStyle"
2020-04-22 09:41:18 +00:00
android:text="@string/finish"
2020-05-13 18:31:13 +00:00
app:icon="@drawable/ic_done_black_24dp" />
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>