mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	Migrate Updates screen to compose (#7534)
* Migrate Updates screen to compose * Review Changes + Cleanup Remove more unused stuff and show confirmation dialog when mass deleting chapters * Review Changes 2 + Rebase
This commit is contained in:
		| @@ -1,40 +0,0 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout 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/swipe_refresh" | ||||
|     android:layout_width="match_parent" | ||||
|     android:layout_height="match_parent"> | ||||
|  | ||||
|     <FrameLayout | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="match_parent"> | ||||
|  | ||||
|         <androidx.recyclerview.widget.RecyclerView | ||||
|             android:id="@+id/recycler" | ||||
|             android:layout_width="match_parent" | ||||
|             android:layout_height="match_parent" | ||||
|             android:clipToPadding="false" | ||||
|             android:paddingTop="4dp" | ||||
|             android:paddingBottom="@dimen/action_toolbar_list_padding" | ||||
|             tools:listitem="@layout/updates_item" /> | ||||
|  | ||||
|         <eu.kanade.tachiyomi.widget.MaterialFastScroll | ||||
|             android:id="@+id/fast_scroller" | ||||
|             android:layout_width="wrap_content" | ||||
|             android:layout_height="match_parent" | ||||
|             android:layout_gravity="end" | ||||
|             android:visibility="gone" | ||||
|             app:fastScrollerBubbleEnabled="false" | ||||
|             tools:visibility="visible" /> | ||||
|  | ||||
|         <eu.kanade.tachiyomi.widget.EmptyView | ||||
|             android:id="@+id/empty_view" | ||||
|             android:layout_width="wrap_content" | ||||
|             android:layout_height="wrap_content" | ||||
|             android:layout_gravity="center" | ||||
|             android:visibility="gone" /> | ||||
|  | ||||
|     </FrameLayout> | ||||
|  | ||||
| </eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout> | ||||
| @@ -1,78 +0,0 @@ | ||||
| <?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:layout_width="match_parent" | ||||
|     android:layout_height="56dp" | ||||
|     android:background="@drawable/list_item_selector_background" | ||||
|     android:paddingStart="16dp" | ||||
|     android:paddingEnd="4dp"> | ||||
|  | ||||
|     <com.google.android.material.imageview.ShapeableImageView | ||||
|         android:id="@+id/manga_cover" | ||||
|         android:layout_width="0dp" | ||||
|         android:layout_height="0dp" | ||||
|         android:layout_marginTop="8dp" | ||||
|         android:layout_marginBottom="8dp" | ||||
|         android:scaleType="centerCrop" | ||||
|         app:layout_constraintBottom_toBottomOf="parent" | ||||
|         app:layout_constraintDimensionRatio="h,1:1" | ||||
|         app:layout_constraintStart_toStartOf="parent" | ||||
|         app:layout_constraintTop_toTopOf="parent" | ||||
|         app:shapeAppearance="@style/ShapeAppearanceOverlay.Cover" | ||||
|         tools:src="@mipmap/ic_launcher" /> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@+id/manga_title" | ||||
|         android:layout_width="0dp" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:layout_marginStart="16dp" | ||||
|         android:ellipsize="end" | ||||
|         android:maxLines="1" | ||||
|         android:textAppearance="?attr/textAppearanceBodyMedium" | ||||
|         app:layout_constraintBottom_toTopOf="@+id/chapter_title" | ||||
|         app:layout_constraintEnd_toStartOf="@+id/download" | ||||
|         app:layout_constraintStart_toEndOf="@+id/manga_cover" | ||||
|         app:layout_constraintTop_toTopOf="parent" | ||||
|         app:layout_constraintVertical_chainStyle="packed" | ||||
|         tools:text="Manga title" /> | ||||
|  | ||||
|     <ImageView | ||||
|         android:id="@+id/bookmark_icon" | ||||
|         android:layout_width="16dp" | ||||
|         android:layout_height="0dp" | ||||
|         android:visibility="gone" | ||||
|         android:layout_marginEnd="4dp" | ||||
|         app:layout_constraintStart_toStartOf="@id/manga_title" | ||||
|         app:layout_constraintTop_toBottomOf="@id/manga_title" | ||||
|         app:layout_constraintBottom_toBottomOf="@id/chapter_title" | ||||
|         app:layout_constraintEnd_toStartOf="@id/chapter_title" | ||||
|         app:srcCompat="@drawable/ic_bookmark_24dp" | ||||
|         app:tint="?attr/colorAccent" | ||||
|         tools:visibility="visible" /> | ||||
|  | ||||
|     <TextView | ||||
|         android:id="@+id/chapter_title" | ||||
|         android:layout_width="0dp" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:ellipsize="end" | ||||
|         android:maxLines="1" | ||||
|         android:textAppearance="?attr/textAppearanceBodyMedium" | ||||
|         android:textColor="?android:attr/textColorSecondary" | ||||
|         android:textSize="12sp" | ||||
|         app:layout_constraintBottom_toBottomOf="parent" | ||||
|         app:layout_constraintEnd_toStartOf="@+id/download" | ||||
|         app:layout_constraintStart_toEndOf="@id/bookmark_icon" | ||||
|         app:layout_constraintTop_toBottomOf="@+id/manga_title" | ||||
|         tools:text="Chapter title" /> | ||||
|  | ||||
|     <eu.kanade.tachiyomi.ui.manga.chapter.ChapterDownloadView | ||||
|         android:id="@+id/download" | ||||
|         android:layout_width="wrap_content" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:paddingStart="4dp" | ||||
|         app:layout_constraintBottom_toBottomOf="parent" | ||||
|         app:layout_constraintEnd_toEndOf="parent" | ||||
|         app:layout_constraintTop_toTopOf="parent" /> | ||||
|  | ||||
| </androidx.constraintlayout.widget.ConstraintLayout> | ||||
		Reference in New Issue
	
	Block a user