|  | @@ -4,7 +4,7 @@
 | 
	
		
			
				|  |  |      xmlns:tools="http://schemas.android.com/tools"
 | 
	
		
			
				|  |  |      android:layout_width="match_parent"
 | 
	
		
			
				|  |  |      android:layout_height="match_parent"
 | 
	
		
			
				|  |  | -    android:background="?android:colorBackground"
 | 
	
		
			
				|  |  | +    android:background="?attr/colorSurface"
 | 
	
		
			
				|  |  |      android:clipToPadding="false"
 | 
	
		
			
				|  |  |      android:orientation="vertical"
 | 
	
		
			
				|  |  |      android:padding="@dimen/material_component_dialogs_padding_around_content_area">
 | 
	
	
		
			
				|  | @@ -31,7 +31,7 @@
 | 
	
		
			
				|  |  |          app:layout_constraintStart_toEndOf="@id/general_prefs"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toTopOf="@id/general_prefs" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.legacy.widget.Space
 | 
	
		
			
				|  |  | +    <android.widget.Space
 | 
	
		
			
				|  |  |          android:id="@+id/spinner_end"
 | 
	
		
			
				|  |  |          android:layout_width="16dp"
 | 
	
		
			
				|  |  |          android:layout_height="0dp"
 | 
	
	
		
			
				|  | @@ -50,7 +50,7 @@
 | 
	
		
			
				|  |  |          android:id="@+id/viewer"
 | 
	
		
			
				|  |  |          android:layout_width="0dp"
 | 
	
		
			
				|  |  |          android:layout_height="24dp"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="20dp"
 | 
	
		
			
				|  |  |          android:entries="@array/viewers_selector"
 | 
	
		
			
				|  |  |          app:layout_constraintEnd_toEndOf="@id/spinner_end"
 | 
	
		
			
				|  |  |          app:layout_constraintStart_toEndOf="@id/verticalcenter"
 | 
	
	
		
			
				|  | @@ -60,7 +60,7 @@
 | 
	
		
			
				|  |  |          android:id="@+id/rotation_mode_text"
 | 
	
		
			
				|  |  |          android:layout_width="0dp"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="20dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_rotation_type"
 | 
	
		
			
				|  |  |          app:layout_constraintBaseline_toBaselineOf="@id/rotation_mode"
 | 
	
		
			
				|  |  |          app:layout_constraintEnd_toStartOf="@id/verticalcenter"
 | 
	
	
		
			
				|  | @@ -70,7 +70,7 @@
 | 
	
		
			
				|  |  |          android:id="@+id/rotation_mode"
 | 
	
		
			
				|  |  |          android:layout_width="0dp"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="20dp"
 | 
	
		
			
				|  |  |          android:entries="@array/rotation_type"
 | 
	
		
			
				|  |  |          app:layout_constraintEnd_toEndOf="@id/spinner_end"
 | 
	
		
			
				|  |  |          app:layout_constraintStart_toEndOf="@id/verticalcenter"
 | 
	
	
		
			
				|  | @@ -89,79 +89,73 @@
 | 
	
		
			
				|  |  |          android:id="@+id/background_color"
 | 
	
		
			
				|  |  |          android:layout_width="0dp"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="20dp"
 | 
	
		
			
				|  |  |          android:entries="@array/reader_themes"
 | 
	
		
			
				|  |  |          app:layout_constraintEnd_toEndOf="@id/spinner_end"
 | 
	
		
			
				|  |  |          app:layout_constraintStart_toEndOf="@id/verticalcenter"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/rotation_mode" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/show_page_number"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="10dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_show_page_number"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/background_color" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/true_color"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_true_color"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          android:visibility="gone"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/show_page_number"
 | 
	
		
			
				|  |  |          tools:visibility="visible" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/fullscreen"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_fullscreen"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/true_color" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/cutout_short"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_cutout_short"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          android:visibility="gone"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/fullscreen" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/keepscreen"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_keep_screen_on"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/cutout_short" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/long_tap"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_read_with_long_tap"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/keepscreen" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/always_show_chapter_transition"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_always_show_chapter_transition"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/long_tap" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.legacy.widget.Space
 | 
	
		
			
				|  |  | +    <android.widget.Space
 | 
	
		
			
				|  |  |          android:id="@+id/end_general_preferences"
 | 
	
		
			
				|  |  |          android:layout_width="0dp"
 | 
	
		
			
				|  |  |          android:layout_height="0dp"
 | 
	
	
		
			
				|  | @@ -193,7 +187,7 @@
 | 
	
		
			
				|  |  |          android:id="@+id/scale_type"
 | 
	
		
			
				|  |  |          android:layout_width="0dp"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="20dp"
 | 
	
		
			
				|  |  |          android:entries="@array/image_scale_type"
 | 
	
		
			
				|  |  |          app:layout_constraintEnd_toEndOf="@id/spinner_end"
 | 
	
		
			
				|  |  |          app:layout_constraintStart_toEndOf="@id/verticalcenter"
 | 
	
	
		
			
				|  | @@ -212,26 +206,25 @@
 | 
	
		
			
				|  |  |          android:id="@+id/zoom_start"
 | 
	
		
			
				|  |  |          android:layout_width="0dp"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="20dp"
 | 
	
		
			
				|  |  |          android:entries="@array/zoom_start"
 | 
	
		
			
				|  |  |          app:layout_constraintEnd_toEndOf="@id/spinner_end"
 | 
	
		
			
				|  |  |          app:layout_constraintStart_toEndOf="@id/verticalcenter"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/scale_type" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/crop_borders"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="10dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_crop_borders"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/zoom_start" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/page_transitions"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_page_transitions"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/crop_borders" />
 | 
	
	
		
			
				|  | @@ -249,20 +242,19 @@
 | 
	
		
			
				|  |  |          app:layout_constraintStart_toStartOf="parent"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/end_general_preferences" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/crop_borders_webtoon"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  | +        android:layout_marginTop="8dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_crop_borders"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/webtoon_prefs" />
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    <androidx.appcompat.widget.SwitchCompat
 | 
	
		
			
				|  |  | +    <com.google.android.material.switchmaterial.SwitchMaterial
 | 
	
		
			
				|  |  |          android:id="@+id/pad_pages_vert_webtoon"
 | 
	
		
			
				|  |  |          android:layout_width="match_parent"
 | 
	
		
			
				|  |  |          android:layout_height="wrap_content"
 | 
	
		
			
				|  |  | -        android:layout_marginTop="16dp"
 | 
	
		
			
				|  |  |          android:text="@string/pref_webtoon_padding_vert"
 | 
	
		
			
				|  |  |          android:textColor="?android:attr/textColorSecondary"
 | 
	
		
			
				|  |  |          app:layout_constraintTop_toBottomOf="@id/crop_borders_webtoon" />
 |