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-10-31 19:45:39 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-11-15 17:39:37 +00:00
|
|
|
app:contentPaddingBottom="4dp"
|
|
|
|
style="@style/BottomDialogCard">
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-11-15 17:39:37 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-11-15 17:39:37 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/vanced_install_title"
|
2020-12-11 19:22:43 +00:00
|
|
|
style="@style/BottomDialogCardTitle" />
|
2020-11-15 17:39:37 +00:00
|
|
|
|
|
|
|
<RelativeLayout
|
2020-10-31 19:45:39 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-11-15 17:39:37 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="12dp">
|
2020-10-31 19:45:39 +00:00
|
|
|
|
|
|
|
<TextView
|
2020-11-15 17:39:37 +00:00
|
|
|
android:id="@+id/vanced_theme"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toStartOf="@id/open_theme_selector"
|
2020-12-11 19:22:43 +00:00
|
|
|
style="@style/BottomDialogCardTextItem" />
|
2020-11-15 17:39:37 +00:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/open_theme_selector"
|
|
|
|
android:layout_width="wrap_content"
|
2020-10-31 19:45:39 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-11-15 17:39:37 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:maxWidth="24dp"
|
|
|
|
android:maxHeight="24dp"
|
2020-12-11 19:22:43 +00:00
|
|
|
android:src="@drawable/ic_baseline_navigate_next_36" />
|
2020-11-15 17:39:37 +00:00
|
|
|
</RelativeLayout>
|
2020-11-05 18:26:27 +00:00
|
|
|
|
2020-12-11 19:22:43 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="12dp">
|
2020-11-05 18:26:27 +00:00
|
|
|
|
2020-12-11 19:22:43 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/vanced_version"
|
|
|
|
style="@style/BottomDialogCardTextItem"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toStartOf="@id/open_version_selector" />
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-12-11 19:22:43 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/open_version_selector"
|
|
|
|
android:layout_width="wrap_content"
|
2020-10-31 19:45:39 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-12-11 19:22:43 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:maxWidth="24dp"
|
|
|
|
android:maxHeight="24dp"
|
|
|
|
android:src="@drawable/ic_baseline_navigate_next_36" />
|
|
|
|
</RelativeLayout>
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-12-11 19:22:43 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/vanced_lang"
|
|
|
|
style="@style/BottomDialogCardTextItem"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toStartOf="@+id/open_language_selector" />
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-12-11 19:22:43 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/open_language_selector"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:maxWidth="24dp"
|
|
|
|
android:maxHeight="24dp"
|
|
|
|
android:src="@drawable/ic_baseline_navigate_next_36" />
|
|
|
|
</RelativeLayout>
|
2020-10-31 19:45:39 +00:00
|
|
|
|
2020-12-14 21:18:58 +00:00
|
|
|
<com.vanced.manager.ui.core.ThemedMaterialButton
|
2020-11-15 17:39:37 +00:00
|
|
|
android:id="@+id/vanced_install"
|
|
|
|
android:text="@string/install"
|
2020-12-11 19:22:43 +00:00
|
|
|
style="@style/BottomDialogButtonStyle" />
|
2020-11-15 17:39:37 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|