recreate setup activity
Signed-off-by: androidacy-user <opensource@androidacy.com>pull/27/head
parent
f63f433104
commit
5d844e0911
@ -1,194 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- App name as subheader -->
|
||||
|
||||
<ScrollView
|
||||
<LinearLayout
|
||||
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:id="@+id/setup_scroll"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="fill"
|
||||
android:orientation="vertical"
|
||||
android:fillViewport="true"
|
||||
android:padding="6dp"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/setup_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/setup_title" android:textAppearance="@style/TextAppearance.Material3.HeadlineSmall" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="@+id/setup_scroll" />
|
||||
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:id="@+id/setup_summary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/setup_message" />
|
||||
|
||||
<!-- Theme radio select. Options are system, light, dark, black, transparent_light -->
|
||||
|
||||
<!-- Button to trigger theme selection -->
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/setup_theme_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:backgroundTint="@color/gray_900"
|
||||
android:foreground="?attr/selectableItemBackground"
|
||||
android:padding="8dp"
|
||||
android:text="@string/setup_theme_button"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="16sp"
|
||||
app:cornerRadius="8dp"
|
||||
app:icon="@drawable/ic_baseline_palette_24"
|
||||
app:iconGravity="textStart"
|
||||
app:iconPadding="8dp"
|
||||
app:iconTint="@color/white"
|
||||
app:iconTintMode="src_in"
|
||||
app:rippleColor="@color/gray_800" tools:ignore="DuplicateSpeakableTextCheck" />
|
||||
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:text="@string/repos"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Headline" /><com.google.android.material.materialswitch.MaterialSwitch
|
||||
android:id="@+id/setup_androidacy_repo"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:checked="false"
|
||||
android:key="pref_androidacy_repo_enabled"
|
||||
android:text="@string/setup_androidacy_repo"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Subhead" />
|
||||
|
||||
<!-- Small summary for above switch -->
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:drawableStart="@drawable/ic_baseline_info_24"
|
||||
android:drawablePadding="8dp"
|
||||
android:text="@string/setup_androidacy_repo_summary"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Small" />
|
||||
|
||||
<com.google.android.material.materialswitch.MaterialSwitch
|
||||
android:id="@+id/setup_magisk_alt_repo"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:checked="false"
|
||||
android:key="pref_magisk_alt_repo_enabled"
|
||||
android:text="@string/setup_magisk_alt_repo"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Subhead" />
|
||||
|
||||
<!-- Small summary for above switch -->
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:drawableStart="@drawable/ic_baseline_info_24"
|
||||
android:drawablePadding="8dp"
|
||||
android:text="@string/setup_magisk_alt_repo_summary"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Small" />
|
||||
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:text="@string/setup_custom_repos"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Caption" />
|
||||
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:text="@string/misc"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Headline" />
|
||||
|
||||
<com.google.android.material.materialswitch.MaterialSwitch
|
||||
android:id="@+id/setup_crash_reporting"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:checked="false"
|
||||
android:key="pref_crash_reporting_enabled"
|
||||
android:text="@string/setup_crash_reporting"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Subhead" />
|
||||
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:drawableStart="@drawable/ic_baseline_info_24"
|
||||
android:drawablePadding="8dp"
|
||||
android:text="@string/setup_crash_reporting_summary"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Small" />
|
||||
|
||||
<com.google.android.material.materialswitch.MaterialSwitch
|
||||
android:id="@+id/setup_background_update_check"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:checked="false"
|
||||
android:key="pref_background_update_check"
|
||||
android:text="@string/setup_background_update_check"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Subhead" />
|
||||
|
||||
<com.google.android.material.textview.MaterialTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:drawableStart="@drawable/ic_baseline_info_24"
|
||||
android:drawablePadding="8dp"
|
||||
android:text="@string/setup_background_update_check_summary"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Small"
|
||||
app:icon="@drawable/ic_baseline_info_24" />
|
||||
android:layout_height="wrap_content" android:orientation="vertical">
|
||||
|
||||
<!-- Placeholder for future settings -->
|
||||
<!--<com.google.android.material.materialswitch.MaterialSwitch
|
||||
android:id="@+id/setup_app_analytics"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dp"
|
||||
android:checked="false"
|
||||
android:key="pref_app_analytics"
|
||||
android:textAppearance="@android:style/TextAppearance.Material.Small"
|
||||
android:text="@string/setup_app_analytics" />-->
|
||||
|
||||
<!-- Linear layout for the finish and cancel buttons -->
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom|end"
|
||||
android:layout_margin="4dp"
|
||||
android:orientation="horizontal">
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/setup_cancel"
|
||||
android:layout_width="120dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="2dp"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/cancel" android:textColor="#5D4037" />
|
||||
|
||||
<com.google.android.material.button.MaterialButton
|
||||
android:id="@+id/setup_continue"
|
||||
android:layout_width="120dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/finish" android:textColor="#5D4037" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</LinearLayout>
|
||||
Loading…
Reference in New Issue