mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-17 14:09:17 +01:00
Remove unused legacy ActionModeWithToolbar
This commit is contained in:
parent
4bf4b167a5
commit
27bac4fffb
@ -68,7 +68,6 @@ import eu.kanade.tachiyomi.util.system.isTablet
|
|||||||
import eu.kanade.tachiyomi.util.system.logcat
|
import eu.kanade.tachiyomi.util.system.logcat
|
||||||
import eu.kanade.tachiyomi.util.system.toast
|
import eu.kanade.tachiyomi.util.system.toast
|
||||||
import eu.kanade.tachiyomi.util.view.setNavigationBarTransparentCompat
|
import eu.kanade.tachiyomi.util.view.setNavigationBarTransparentCompat
|
||||||
import eu.kanade.tachiyomi.widget.ActionModeWithToolbar
|
|
||||||
import kotlinx.coroutines.delay
|
import kotlinx.coroutines.delay
|
||||||
import kotlinx.coroutines.flow.drop
|
import kotlinx.coroutines.flow.drop
|
||||||
import kotlinx.coroutines.flow.launchIn
|
import kotlinx.coroutines.flow.launchIn
|
||||||
@ -533,11 +532,6 @@ class MainActivity : BaseActivity() {
|
|||||||
super.onSupportActionModeFinished(mode)
|
super.onSupportActionModeFinished(mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun startActionModeAndToolbar(modeCallback: ActionModeWithToolbar.Callback): ActionModeWithToolbar {
|
|
||||||
binding.actionToolbar.start(modeCallback)
|
|
||||||
return binding.actionToolbar
|
|
||||||
}
|
|
||||||
|
|
||||||
private suspend fun resetExitConfirmation() {
|
private suspend fun resetExitConfirmation() {
|
||||||
isConfirmingExit = true
|
isConfirmingExit = true
|
||||||
val toast = toast(R.string.confirm_exit, Toast.LENGTH_LONG)
|
val toast = toast(R.string.confirm_exit, Toast.LENGTH_LONG)
|
||||||
|
@ -1,169 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.widget
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import android.util.AttributeSet
|
|
||||||
import android.view.LayoutInflater
|
|
||||||
import android.view.Menu
|
|
||||||
import android.view.MenuInflater
|
|
||||||
import android.view.MenuItem
|
|
||||||
import android.view.animation.Animation
|
|
||||||
import android.view.animation.AnimationUtils
|
|
||||||
import android.widget.FrameLayout
|
|
||||||
import androidx.annotation.IdRes
|
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
|
||||||
import androidx.appcompat.view.ActionMode
|
|
||||||
import androidx.core.view.isVisible
|
|
||||||
import dev.chrisbanes.insetter.applyInsetter
|
|
||||||
import eu.kanade.tachiyomi.R
|
|
||||||
import eu.kanade.tachiyomi.databinding.ActionToolbarBinding
|
|
||||||
import eu.kanade.tachiyomi.util.system.applySystemAnimatorScale
|
|
||||||
import eu.kanade.tachiyomi.widget.ActionModeWithToolbar.Callback
|
|
||||||
import eu.kanade.tachiyomi.widget.listener.SimpleAnimationListener
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A toolbar holding only menu items. This view is supposed to be paired with [AppCompatActivity]'s [ActionMode].
|
|
||||||
*
|
|
||||||
* @see Callback
|
|
||||||
*/
|
|
||||||
class ActionModeWithToolbar @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null) :
|
|
||||||
FrameLayout(context, attrs) {
|
|
||||||
|
|
||||||
init {
|
|
||||||
clipToPadding = false
|
|
||||||
applyInsetter {
|
|
||||||
type(navigationBars = true) {
|
|
||||||
padding(bottom = true, horizontal = true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private val binding = ActionToolbarBinding.inflate(LayoutInflater.from(context), this, true)
|
|
||||||
|
|
||||||
private var callback: Callback? = null
|
|
||||||
|
|
||||||
private var actionMode: ActionMode? = null
|
|
||||||
private val actionModeCallback = object : ActionMode.Callback {
|
|
||||||
override fun onCreateActionMode(mode: ActionMode, menu: Menu): Boolean {
|
|
||||||
callback?.onCreateActionToolbar(mode.menuInflater, binding.menu.menu)
|
|
||||||
binding.menu.setOnMenuItemClickListener { onActionItemClicked(mode, it) }
|
|
||||||
binding.root.isVisible = true
|
|
||||||
val bottomAnimation = AnimationUtils.loadAnimation(context, R.anim.bottom_sheet_slide_in)
|
|
||||||
bottomAnimation.applySystemAnimatorScale(context)
|
|
||||||
binding.root.startAnimation(bottomAnimation)
|
|
||||||
|
|
||||||
return callback?.onCreateActionMode(mode, menu) ?: false
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onPrepareActionMode(mode: ActionMode, menu: Menu): Boolean {
|
|
||||||
callback?.onPrepareActionToolbar(this@ActionModeWithToolbar, binding.menu.menu)
|
|
||||||
return callback?.onPrepareActionMode(mode, menu) ?: false
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onActionItemClicked(mode: ActionMode, item: MenuItem): Boolean {
|
|
||||||
return callback?.onActionItemClicked(mode, item) ?: false
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onDestroyActionMode(mode: ActionMode) {
|
|
||||||
callback?.onDestroyActionMode(mode)
|
|
||||||
|
|
||||||
val bottomAnimation = AnimationUtils.loadAnimation(context, R.anim.bottom_sheet_slide_out).apply {
|
|
||||||
applySystemAnimatorScale(context)
|
|
||||||
setAnimationListener(
|
|
||||||
object : SimpleAnimationListener() {
|
|
||||||
override fun onAnimationEnd(animation: Animation) {
|
|
||||||
binding.root.isVisible = false
|
|
||||||
binding.menu.menu.clear()
|
|
||||||
binding.menu.setOnMenuItemClickListener(null)
|
|
||||||
|
|
||||||
callback?.onDestroyActionToolbar()
|
|
||||||
callback = null
|
|
||||||
actionMode = null
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
|
||||||
}
|
|
||||||
binding.root.startAnimation(bottomAnimation)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun start(callback: Callback) {
|
|
||||||
val context = context
|
|
||||||
if (context !is AppCompatActivity) {
|
|
||||||
throw IllegalStateException("AppCompatActivity is needed to start this view")
|
|
||||||
}
|
|
||||||
if (actionMode == null) {
|
|
||||||
this.callback = callback
|
|
||||||
actionMode = context.startSupportActionMode(actionModeCallback)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun finish() {
|
|
||||||
actionMode?.finish()
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets a menu item if found.
|
|
||||||
*/
|
|
||||||
fun findToolbarItem(@IdRes itemId: Int): MenuItem? {
|
|
||||||
return binding.menu.menu.findItem(itemId)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun invalidate() {
|
|
||||||
super.invalidate()
|
|
||||||
actionMode?.invalidate()
|
|
||||||
}
|
|
||||||
|
|
||||||
interface Callback {
|
|
||||||
/**
|
|
||||||
* Called when action mode is first created. The menu supplied will be used to
|
|
||||||
* generate action buttons for the action mode.
|
|
||||||
*
|
|
||||||
* @param mode ActionMode being created
|
|
||||||
* @param menu Menu used to populate action buttons
|
|
||||||
* @return true if the action mode should be created, false if entering this
|
|
||||||
* mode should be aborted.
|
|
||||||
*/
|
|
||||||
fun onCreateActionMode(mode: ActionMode, menu: Menu): Boolean
|
|
||||||
|
|
||||||
/**
|
|
||||||
* [onCreateActionMode] but for the bottom toolbar
|
|
||||||
*/
|
|
||||||
fun onCreateActionToolbar(menuInflater: MenuInflater, menu: Menu)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called to refresh an action mode's action menu whenever it is invalidated.
|
|
||||||
*
|
|
||||||
* @param mode ActionMode being prepared
|
|
||||||
* @param menu Menu used to populate action buttons
|
|
||||||
* @return true if the menu or action mode was updated, false otherwise.
|
|
||||||
*/
|
|
||||||
fun onPrepareActionMode(mode: ActionMode, menu: Menu): Boolean
|
|
||||||
|
|
||||||
/**
|
|
||||||
* [onPrepareActionMode] but for the bottom toolbar
|
|
||||||
*/
|
|
||||||
fun onPrepareActionToolbar(toolbar: ActionModeWithToolbar, menu: Menu)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called to report a user click on an action button.
|
|
||||||
*
|
|
||||||
* @param mode The current ActionMode
|
|
||||||
* @param item The item that was clicked
|
|
||||||
* @return true if this callback handled the event, false if the standard MenuItem
|
|
||||||
* invocation should continue.
|
|
||||||
*/
|
|
||||||
fun onActionItemClicked(mode: ActionMode, item: MenuItem): Boolean
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when an action mode is about to be exited and destroyed.
|
|
||||||
*
|
|
||||||
* @param mode The current ActionMode being destroyed
|
|
||||||
*/
|
|
||||||
fun onDestroyActionMode(mode: ActionMode)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when the action toolbar is finished exiting
|
|
||||||
*/
|
|
||||||
fun onDestroyActionToolbar() {}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,40 +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="wrap_content"
|
|
||||||
android:clipToPadding="false"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible">
|
|
||||||
|
|
||||||
<com.google.android.material.card.MaterialCardView
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_margin="12dp"
|
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintHorizontal_bias="1.0"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
|
||||||
app:layout_constraintWidth_default="percent"
|
|
||||||
app:layout_constraintWidth_percent=".5">
|
|
||||||
|
|
||||||
<com.google.android.material.appbar.MaterialToolbar
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="?attr/actionBarSize"
|
|
||||||
android:layout_gravity="bottom"
|
|
||||||
app:contentInsetEnd="8dp"
|
|
||||||
app:contentInsetStart="8dp">
|
|
||||||
|
|
||||||
<androidx.appcompat.widget.ActionMenuView
|
|
||||||
android:id="@+id/menu"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_gravity="center" />
|
|
||||||
|
|
||||||
</com.google.android.material.appbar.MaterialToolbar>
|
|
||||||
|
|
||||||
</com.google.android.material.card.MaterialCardView>
|
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
@ -81,12 +81,6 @@
|
|||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
<eu.kanade.tachiyomi.widget.ActionModeWithToolbar
|
|
||||||
android:id="@+id/action_toolbar"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="bottom" />
|
|
||||||
|
|
||||||
<include
|
<include
|
||||||
android:id="@+id/fab_layout"
|
android:id="@+id/fab_layout"
|
||||||
layout="@layout/main_activity_fab" />
|
layout="@layout/main_activity_fab" />
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<com.google.android.material.card.MaterialCardView 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="wrap_content"
|
|
||||||
android:layout_margin="12dp"
|
|
||||||
android:clipToPadding="false"
|
|
||||||
android:visibility="gone"
|
|
||||||
tools:visibility="visible">
|
|
||||||
|
|
||||||
<com.google.android.material.appbar.MaterialToolbar
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="?attr/actionBarSize"
|
|
||||||
android:layout_gravity="bottom"
|
|
||||||
app:contentInsetEnd="8dp"
|
|
||||||
app:contentInsetStart="8dp">
|
|
||||||
|
|
||||||
<androidx.appcompat.widget.ActionMenuView
|
|
||||||
android:id="@+id/menu"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
android:layout_gravity="center" />
|
|
||||||
|
|
||||||
</com.google.android.material.appbar.MaterialToolbar>
|
|
||||||
|
|
||||||
</com.google.android.material.card.MaterialCardView>
|
|
@ -65,12 +65,6 @@
|
|||||||
android:id="@+id/fab_layout"
|
android:id="@+id/fab_layout"
|
||||||
layout="@layout/main_activity_fab" />
|
layout="@layout/main_activity_fab" />
|
||||||
|
|
||||||
<eu.kanade.tachiyomi.widget.ActionModeWithToolbar
|
|
||||||
android:id="@+id/action_toolbar"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_gravity="bottom" />
|
|
||||||
|
|
||||||
<eu.kanade.tachiyomi.widget.TachiyomiBottomNavigationView
|
<eu.kanade.tachiyomi.widget.TachiyomiBottomNavigationView
|
||||||
android:id="@+id/bottom_nav"
|
android:id="@+id/bottom_nav"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
Loading…
Reference in New Issue
Block a user