mirror of
https://github.com/jrpie/Launcher.git
synced 2025-07-11 09:55:13 +02:00
Co-authored-by: Luke Wass <wassupluke@gmail.com> Squashed commit of the following: commit 075b4a5353cedea531ec6ebefa60d92de82e8e21 Author: Josia Pietsch <git@jrpie.de> Date: Thu May 29 15:34:23 2025 +0200 some changes commitced2e30531
Author: Luke Wass <wassupluke@gmail.com> Date: Thu May 29 00:18:21 2025 -0500 remove unused imports/functions/variables, improve naming convention, remove unused widget context commit956ad9795c
Author: Luke Wass <wassupluke@gmail.com> Date: Wed May 28 22:40:05 2025 -0500 add contentDescriptions, ignore unspeakable sections, minor code reorganization commitcb793860c0
Author: Luke Wass <wassupluke@gmail.com> Date: Wed May 28 21:03:03 2025 -0500 remove empty method commit893de14c79
Author: Luke Wass <wassupluke@gmail.com> Date: Tue May 27 22:56:03 2025 -0500 Simplify constructors by removing unused init parameters; clean up handle list type declaration commit39164d2e54
Author: Luke Wass <wassupluke@gmail.com> Date: Tue May 27 22:54:16 2025 -0500 Refactor getAppWidgetProviders to use explicit lambda parameter names for clarity commit8e53ef0ebe
Author: Luke Wass <wassupluke@gmail.com> Date: Tue May 27 22:52:21 2025 -0500 improve naming convention commit8c2a266c22
Author: Luke Wass <wassupluke@gmail.com> Date: Tue May 27 22:50:55 2025 -0500 remove unused resources commitbe03af8ac6
Author: Luke Wass <wassupluke@gmail.com> Date: Tue May 27 22:50:33 2025 -0500 fix table format
61 lines
No EOL
2.6 KiB
XML
61 lines
No EOL
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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:id="@+id/tutorial_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
tools:context=".ui.tutorial.TutorialActivity">
|
|
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/tutorial_viewpager"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
app:layout_constraintBottom_toTopOf="@+id/tutorial_tabs"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintHorizontal_bias="0.0"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_bias="0.0" />
|
|
|
|
<ImageView
|
|
android:id="@+id/tutorial_button_back"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:contentDescription="@string/content_description_navigate_back"
|
|
android:gravity="center"
|
|
android:alpha="0.5"
|
|
android:src="@drawable/baseline_navigate_before_24"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/tutorial_viewpager" />
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tutorial_tabs"
|
|
android:layout_width="0dp"
|
|
android:layout_height="50dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toStartOf="@+id/tutorial_button_next"
|
|
app:layout_constraintStart_toEndOf="@+id/tutorial_button_back"
|
|
app:tabBackground="@drawable/tutorial_tab_selector"
|
|
app:tabGravity="center"
|
|
app:tabIndicatorHeight="0dp"
|
|
tools:ignore="SpeakableTextPresentCheck" />
|
|
|
|
<ImageView
|
|
android:id="@+id/tutorial_button_next"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:contentDescription="@string/content_description_navigate_next"
|
|
android:gravity="center"
|
|
android:src="@drawable/baseline_navigate_next_24"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/tutorial_viewpager" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |