mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	Remove dead code
Mostly from settings rewrite, but some other things too.
This commit is contained in:
		| @@ -1,18 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <eu.kanade.tachiyomi.widget.materialdialogs.QuadStateTextView xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     xmlns:app="http://schemas.android.com/apk/res-auto" | ||||
|     style="?attr/materialAlertDialogBodyTextStyle" | ||||
|     android:id="@+id/quad_state_control" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="wrap_content" | ||||
|     android:background="?attr/selectableItemBackground" | ||||
|     android:minHeight="?attr/listPreferredItemHeightSmall" | ||||
|     android:gravity="start|center_vertical" | ||||
|     android:textAlignment="viewStart" | ||||
|     android:paddingStart="@dimen/abc_select_dialog_padding_start_material" | ||||
|     android:paddingEnd="?attr/dialogPreferredPadding" | ||||
|     android:drawablePadding="20dp" | ||||
|     android:ellipsize="marquee" | ||||
|     app:drawableStartCompat="@drawable/ic_check_box_outline_blank_24dp" | ||||
|     tools:text="Quad-state item" /> | ||||
| @@ -1,49 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="wrap_content" | ||||
|     android:orientation="vertical" | ||||
|     android:minHeight="48dp"> | ||||
|  | ||||
|     <Space | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="@dimen/abc_dialog_title_divider_material" /> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@+id/message" | ||||
|         style="?attr/materialAlertDialogBodyTextStyle" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:paddingBottom="@dimen/abc_dialog_title_divider_material" | ||||
|         android:paddingHorizontal="?attr/dialogPreferredPadding" | ||||
|         android:visibility="gone" | ||||
|         tools:text="Dialog Message for quad-state dialog" | ||||
|         tools:visibility="visible" /> | ||||
|  | ||||
|     <FrameLayout | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content"> | ||||
|  | ||||
|         <com.google.android.material.divider.MaterialDivider | ||||
|             android:id="@+id/scrollIndicatorUp" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:layout_gravity="top" /> | ||||
|  | ||||
|         <androidx.recyclerview.widget.RecyclerView | ||||
|             android:id="@+id/list" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:scrollIndicators="none" | ||||
|             tools:listitem="@layout/dialog_quadstatemultichoice_item" /> | ||||
|  | ||||
|         <com.google.android.material.divider.MaterialDivider | ||||
|             android:id="@+id/scrollIndicatorDown" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:layout_gravity="bottom" /> | ||||
|  | ||||
|     </FrameLayout> | ||||
|  | ||||
| </LinearLayout> | ||||
| @@ -1,51 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:app="http://schemas.android.com/apk/res-auto" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="match_parent" | ||||
|     android:orientation="vertical" | ||||
|     android:paddingStart="24dp" | ||||
|     android:paddingEnd="24dp"> | ||||
|  | ||||
|     <com.google.android.material.textfield.TextInputLayout | ||||
|         android:id="@+id/username_label" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:hint="@string/username"> | ||||
|  | ||||
|         <eu.kanade.tachiyomi.widget.TachiyomiTextInputEditText | ||||
|             android:id="@+id/username" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:inputType="text" /> | ||||
|  | ||||
|     </com.google.android.material.textfield.TextInputLayout> | ||||
|  | ||||
|     <com.google.android.material.textfield.TextInputLayout | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:hint="@string/password" | ||||
|         app:endIconMode="password_toggle"> | ||||
|  | ||||
|         <eu.kanade.tachiyomi.widget.TachiyomiTextInputEditText | ||||
|             android:id="@+id/password" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:inputType="textPassword" /> | ||||
|  | ||||
|     </com.google.android.material.textfield.TextInputLayout> | ||||
|  | ||||
|     <com.dd.processbutton.iml.ActionProcessButton | ||||
|         android:id="@+id/login" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:layout_marginTop="20dp" | ||||
|         android:text="@string/login" | ||||
|         android:textColor="?attr/colorOnPrimary" | ||||
|         app:pb_colorNormal="?attr/colorPrimary" | ||||
|         app:pb_colorPressed="?attr/colorPrimary" | ||||
|         app:pb_textComplete="@string/login_success" | ||||
|         app:pb_textError="@string/invalid_login" | ||||
|         app:pb_textProgress="@string/loading" /> | ||||
|  | ||||
| </LinearLayout> | ||||
| @@ -1,51 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:app="http://schemas.android.com/apk/res-auto" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="match_parent" | ||||
|     android:baselineAligned="false" | ||||
|     android:orientation="horizontal"> | ||||
|  | ||||
|     <LinearLayout | ||||
|         android:layout_width="0dp" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:layout_weight="1" | ||||
|         android:gravity="center" | ||||
|         android:orientation="vertical"> | ||||
|  | ||||
|         <TextView | ||||
|             android:layout_width="wrap_content" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:text="@string/portrait" /> | ||||
|  | ||||
|         <eu.kanade.tachiyomi.widget.MinMaxNumberPicker | ||||
|             android:id="@+id/portrait_columns" | ||||
|             android:layout_width="wrap_content" | ||||
|             android:layout_height="wrap_content" | ||||
|             app:max="10" | ||||
|             app:min="0" /> | ||||
|  | ||||
|     </LinearLayout> | ||||
|  | ||||
|     <LinearLayout | ||||
|         android:layout_width="0dp" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:layout_weight="1" | ||||
|         android:gravity="center" | ||||
|         android:orientation="vertical"> | ||||
|  | ||||
|         <TextView | ||||
|             android:layout_width="wrap_content" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:text="@string/landscape" /> | ||||
|  | ||||
|         <eu.kanade.tachiyomi.widget.MinMaxNumberPicker | ||||
|             android:id="@+id/landscape_columns" | ||||
|             android:layout_width="wrap_content" | ||||
|             android:layout_height="wrap_content" | ||||
|             app:max="10" | ||||
|             app:min="0" /> | ||||
|  | ||||
|     </LinearLayout> | ||||
|  | ||||
| </LinearLayout> | ||||
| @@ -1,148 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <LinearLayout 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:layout_width="114dp" | ||||
|     android:layout_height="wrap_content" | ||||
|     android:orientation="vertical" | ||||
|     android:padding="4dp"> | ||||
|  | ||||
|     <com.google.android.material.card.MaterialCardView | ||||
|         android:id="@+id/theme_card" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:checkable="true" | ||||
|         android:clickable="true" | ||||
|         android:focusable="true" | ||||
|         android:importantForAccessibility="no" | ||||
|         app:cardCornerRadius="17dp" | ||||
|         app:strokeColor="?attr/colorAccent" | ||||
|         app:strokeWidth="4dp" | ||||
|         app:cardElevation="0dp"> | ||||
|  | ||||
|         <androidx.constraintlayout.widget.ConstraintLayout | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="170dp" | ||||
|             android:background="?android:attr/colorBackground"> | ||||
|  | ||||
|             <View | ||||
|                 android:id="@+id/top_nav" | ||||
|                 android:layout_width="0dp" | ||||
|                 android:layout_height="40dp" | ||||
|                 app:layout_constraintEnd_toEndOf="parent" | ||||
|                 app:layout_constraintStart_toStartOf="parent" | ||||
|                 app:layout_constraintTop_toTopOf="parent" /> | ||||
|  | ||||
|             <com.google.android.material.card.MaterialCardView | ||||
|                 android:id="@+id/top_nav_text" | ||||
|                 android:layout_width="54dp" | ||||
|                 android:layout_height="17dp" | ||||
|                 android:layout_marginTop="5dp" | ||||
|                 android:layout_marginStart="12dp" | ||||
|                 app:layout_constraintBottom_toBottomOf="@+id/top_nav" | ||||
|                 app:layout_constraintStart_toStartOf="@+id/top_nav" | ||||
|                 app:layout_constraintTop_toTopOf="@+id/top_nav" | ||||
|                 app:cardBackgroundColor="?attr/colorOnSurface" | ||||
|                 app:cardCornerRadius="4dp"/> | ||||
|  | ||||
|             <com.google.android.material.card.MaterialCardView | ||||
|                 android:id="@+id/cover_container" | ||||
|                 android:layout_width="0dp" | ||||
|                 android:layout_height="0dp" | ||||
|                 android:layout_marginTop="4dp" | ||||
|                 app:layout_constraintTop_toBottomOf="@+id/top_nav" | ||||
|                 app:layout_constraintDimensionRatio="2:2.7" | ||||
|                 app:layout_constraintStart_toStartOf="@id/top_nav_text" | ||||
|                 app:layout_constraintEnd_toStartOf="@id/center_guideline" | ||||
|                 app:cardBackgroundColor="?android:attr/divider" | ||||
|                 app:cardElevation="0dp" /> | ||||
|  | ||||
|             <com.google.android.material.card.MaterialCardView | ||||
|                 android:layout_width="wrap_content" | ||||
|                 android:layout_height="wrap_content" | ||||
|                 android:layout_marginStart="4dp" | ||||
|                 android:layout_marginTop="4dp" | ||||
|                 app:layout_constraintStart_toStartOf="@+id/cover_container" | ||||
|                 app:layout_constraintTop_toTopOf="@+id/cover_container" | ||||
|                 app:cardCornerRadius="6dp"> | ||||
|  | ||||
|                 <LinearLayout | ||||
|                     android:id="@+id/badges" | ||||
|                     android:layout_width="wrap_content" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:background="@drawable/rounded_rectangle"> | ||||
|  | ||||
|                     <View | ||||
|                         android:layout_width="12dp" | ||||
|                         android:layout_height="16dp" | ||||
|                         android:background="?attr/colorTertiary" /> | ||||
|  | ||||
|                     <View | ||||
|                         android:layout_width="12dp" | ||||
|                         android:layout_height="16dp" | ||||
|                         android:background="?attr/colorSecondary" /> | ||||
|  | ||||
|                 </LinearLayout> | ||||
|  | ||||
|             </com.google.android.material.card.MaterialCardView> | ||||
|  | ||||
|             <com.google.android.material.card.MaterialCardView | ||||
|                 android:id="@+id/bottom_nav" | ||||
|                 android:layout_width="0dp" | ||||
|                 android:layout_height="40dp" | ||||
|                 app:layout_constraintBottom_toBottomOf="parent" | ||||
|                 app:layout_constraintEnd_toEndOf="parent" | ||||
|                 app:layout_constraintStart_toStartOf="parent" | ||||
|                 app:cardCornerRadius="0dp"> | ||||
|  | ||||
|                 <LinearLayout | ||||
|                     android:layout_width="match_parent" | ||||
|                     android:layout_height="wrap_content" | ||||
|                     android:layout_marginBottom="2dp" | ||||
|                     android:layout_gravity="center_vertical" | ||||
|                     android:orientation="horizontal" | ||||
|                     android:paddingHorizontal="12dp"> | ||||
|  | ||||
|                     <com.google.android.material.card.MaterialCardView | ||||
|                         android:id="@+id/bottom_nav_selected_item" | ||||
|                         android:layout_width="17dp" | ||||
|                         android:layout_height="17dp" | ||||
|                         android:layout_marginEnd="8dp" | ||||
|                         app:cardBackgroundColor="?attr/colorPrimary" | ||||
|                         app:cardCornerRadius="100dp"/> | ||||
|  | ||||
|                     <com.google.android.material.card.MaterialCardView | ||||
|                         android:id="@+id/bottom_nav_unselected_item" | ||||
|                         android:layout_width="match_parent" | ||||
|                         android:layout_height="17dp" | ||||
|                         android:alpha="0.6" | ||||
|                         app:cardBackgroundColor="?attr/colorOnSurface" | ||||
|                         app:cardCornerRadius="4dp"/> | ||||
|  | ||||
|                 </LinearLayout> | ||||
|  | ||||
|             </com.google.android.material.card.MaterialCardView> | ||||
|  | ||||
|             <androidx.constraintlayout.widget.Guideline | ||||
|                 android:id="@+id/center_guideline" | ||||
|                 android:layout_width="0dp" | ||||
|                 android:layout_height="0dp" | ||||
|                 android:orientation="vertical" | ||||
|                 app:layout_constraintGuide_percent="0.5" /> | ||||
|  | ||||
|         </androidx.constraintlayout.widget.ConstraintLayout> | ||||
|  | ||||
|     </com.google.android.material.card.MaterialCardView> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@+id/name" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="32sp" | ||||
|         android:maxLines="2" | ||||
|         android:layout_marginTop="4dp" | ||||
|         android:textAlignment="center" | ||||
|         android:textAppearance="?android:attr/textAppearanceListItemSecondary" | ||||
|         android:scrollbars="none" | ||||
|         tools:text="Theme Name" /> | ||||
|  | ||||
| </LinearLayout> | ||||
| @@ -1,26 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||||
|     xmlns:tools="http://schemas.android.com/tools" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="wrap_content" | ||||
|     android:orientation="vertical"> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@android:id/title" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:paddingHorizontal="16dp" | ||||
|         android:paddingTop="4dp" | ||||
|         android:textAppearance="@style/TextAppearance.AppCompat.Menu" | ||||
|         tools:text="App theme" /> | ||||
|  | ||||
|     <androidx.recyclerview.widget.RecyclerView | ||||
|         android:id="@+id/themes_list" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:paddingHorizontal="12dp" | ||||
|         android:paddingVertical="8dp" | ||||
|         android:clipToPadding="false" | ||||
|         tools:listitem="@layout/pref_theme_item" /> | ||||
|  | ||||
| </LinearLayout> | ||||
| @@ -1,49 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <LinearLayout 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:layout_width="match_parent" | ||||
|     android:layout_height="?listPreferredItemHeight" | ||||
|     android:orientation="horizontal" | ||||
|     android:paddingHorizontal="16dp" | ||||
|     android:paddingVertical="8dp"> | ||||
|  | ||||
|     <com.google.android.material.card.MaterialCardView | ||||
|         android:id="@+id/logo_container" | ||||
|         android:layout_width="48dp" | ||||
|         android:layout_height="48dp" | ||||
|         app:cardBackgroundColor="#2E51A2" | ||||
|         app:cardElevation="0dp" | ||||
|         app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.MaterialCardView.Tracker"> | ||||
|  | ||||
|         <ImageView | ||||
|             android:id="@android:id/icon" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="match_parent" | ||||
|             android:importantForAccessibility="no" | ||||
|             android:padding="4dp" | ||||
|             tools:src="@drawable/ic_tracker_mal" /> | ||||
|  | ||||
|     </com.google.android.material.card.MaterialCardView> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@android:id/title" | ||||
|         android:layout_width="0dp" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:layout_weight="1" | ||||
|         android:layout_gravity="center_vertical" | ||||
|         android:ellipsize="end" | ||||
|         android:maxLines="1" | ||||
|         android:paddingHorizontal="16dp" | ||||
|         android:textAppearance="?attr/textAppearanceTitleMedium" | ||||
|         tools:text="MyAnimeList" /> | ||||
|  | ||||
|     <ImageView | ||||
|         android:id="@+id/checked_icon" | ||||
|         android:layout_width="32dp" | ||||
|         android:layout_height="32dp" | ||||
|         android:layout_gravity="center_vertical" | ||||
|         android:padding="4dp" | ||||
|         android:src="@drawable/ic_done_green_24dp" /> | ||||
|  | ||||
| </LinearLayout> | ||||
		Reference in New Issue
	
	Block a user