Fix some text colors

This commit is contained in:
Jobobby04 2021-05-18 13:05:40 -04:00
parent 33a590d895
commit fd65db51c1
2 changed files with 9 additions and 6 deletions

View File

@ -78,8 +78,8 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingStart="16dp" android:paddingStart="16dp"
android:paddingEnd="16dp" android:paddingEnd="16dp"
android:text="@string/pref_page_transitions" android:textColor="?android:attr/textColorSecondary"
app:layout_constraintTop_toBottomOf="@+id/dual_page_invert" /> android:text="@string/pref_page_transitions" />
<androidx.constraintlayout.widget.Group <androidx.constraintlayout.widget.Group
android:id="@+id/tapping_prefs_group" android:id="@+id/tapping_prefs_group"

View File

@ -49,17 +49,19 @@
android:id="@+id/page_transitions_webtoon" android:id="@+id/page_transitions_webtoon"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/pref_page_transitions"
android:paddingStart="16dp" android:paddingStart="16dp"
android:paddingEnd="16dp" /> android:paddingEnd="16dp"
android:textColor="?android:attr/textColorSecondary"
android:text="@string/pref_page_transitions"/>
<com.google.android.material.switchmaterial.SwitchMaterial <com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/zoom_out_webtoon" android:id="@+id/zoom_out_webtoon"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/enable_zoom_out"
android:paddingStart="16dp" android:paddingStart="16dp"
android:paddingEnd="16dp" /> android:paddingEnd="16dp"
android:textColor="?android:attr/textColorSecondary"
android:text="@string/enable_zoom_out"/>
<com.google.android.material.switchmaterial.SwitchMaterial <com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/dual_page_split" android:id="@+id/dual_page_split"
@ -97,6 +99,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingStart="16dp" android:paddingStart="16dp"
android:paddingEnd="16dp" android:paddingEnd="16dp"
android:textColor="?android:attr/textColorSecondary"
android:text="@string/pref_crop_borders" /> android:text="@string/pref_crop_borders" />
<androidx.constraintlayout.widget.Group <androidx.constraintlayout.widget.Group