mirror of
https://github.com/jrpie/Launcher.git
synced 2025-06-08 10:20:15 +02:00
merge #193 - codebase improvements
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
This commit is contained in:
parent
15d36eeff4
commit
04a2b4d248
29 changed files with 91 additions and 99 deletions
|
@ -20,6 +20,22 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/settings_system"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:contentDescription="@string/settings"
|
||||
android:gravity="center"
|
||||
android:includeFontPadding="true"
|
||||
android:paddingLeft="16sp"
|
||||
android:paddingRight="16sp"
|
||||
android:src="@drawable/baseline_settings_applications_24"
|
||||
custom:layout_constraintBottom_toBottomOf="parent"
|
||||
custom:layout_constraintStart_toStartOf="parent"
|
||||
custom:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/settings_heading"
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -40,6 +56,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:contentDescription="@string/content_description_close"
|
||||
android:gravity="center"
|
||||
android:includeFontPadding="true"
|
||||
android:paddingLeft="16sp"
|
||||
|
@ -48,28 +65,14 @@
|
|||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/settings_system"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:gravity="center"
|
||||
android:includeFontPadding="true"
|
||||
android:paddingLeft="16sp"
|
||||
android:paddingRight="16sp"
|
||||
android:src="@drawable/baseline_settings_applications_24"
|
||||
custom:layout_constraintBottom_toBottomOf="parent"
|
||||
custom:layout_constraintStart_toStartOf="parent"
|
||||
custom:layout_constraintTop_toTopOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<com.google.android.material.tabs.TabLayout
|
||||
android:id="@+id/settings_tabs"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:tabTextColor="?attr/android:textColor" />
|
||||
app:tabTextColor="?attr/android:textColor"
|
||||
tools:ignore="SpeakableTextPresentCheck" />
|
||||
|
||||
</com.google.android.material.appbar.AppBarLayout>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue