Add visual cues and interactive styling to the settings fragment

This commit is contained in:
Luke Wass 2025-05-20 11:58:12 -05:00
parent ba3255d9ec
commit a56cc772f7

View file

@ -33,17 +33,27 @@
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tutorial_setup_title" /> app:layout_constraintTop_toBottomOf="@id/tutorial_setup_title" />
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="0dp"
app:cardElevation="8dp"
app:cardBackgroundColor="@color/cardview_dark_background"
app:cardCornerRadius="12dp"
app:cardUseCompatPadding="true"
app:layout_constraintTop_toBottomOf="@id/tutorial_setup_subtitle"
app:layout_constraintBottom_toTopOf="@id/tutorial_setup_text_bottom"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<androidx.fragment.app.FragmentContainerView <androidx.fragment.app.FragmentContainerView
android:id="@+id/tutorial_setup_actions_rview_fragment" android:id="@+id/tutorial_setup_actions_rview_fragment"
android:name="de.jrpie.android.launcher.ui.settings.actions.SettingsFragmentActionsRecycler" android:name="de.jrpie.android.launcher.ui.settings.actions.SettingsFragmentActionsRecycler"
android:layout_width="0dp" android:layout_width="match_parent"
android:layout_height="0dp" android:layout_height="match_parent"
android:layout_marginTop="32dp" android:layout_marginVertical="4dp"
android:layout_marginBottom="16dp" android:layout_marginStart="10dp"/>
app:layout_constraintBottom_toTopOf="@id/tutorial_setup_text_bottom"
app:layout_constraintEnd_toEndOf="parent" </androidx.cardview.widget.CardView>
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tutorial_setup_subtitle" />
<TextView <TextView
android:id="@+id/tutorial_setup_text_bottom" android:id="@+id/tutorial_setup_text_bottom"