Fix reader fullscreen mode
parent
2dc5840872
commit
25b828cf83
@ -0,0 +1,9 @@
|
|||||||
|
package org.koitharu.kotatsu.utils.anim
|
||||||
|
|
||||||
|
import androidx.annotation.IntegerRes
|
||||||
|
|
||||||
|
enum class Duration(@IntegerRes val resId: Int) {
|
||||||
|
SHORT(android.R.integer.config_shortAnimTime),
|
||||||
|
MEDIUM(android.R.integer.config_mediumAnimTime),
|
||||||
|
LONG(android.R.integer.config_longAnimTime)
|
||||||
|
}
|
||||||
@ -0,0 +1,95 @@
|
|||||||
|
package org.koitharu.kotatsu.utils.anim
|
||||||
|
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewPropertyAnimator
|
||||||
|
import android.view.animation.AccelerateDecelerateInterpolator
|
||||||
|
import org.koitharu.kotatsu.utils.ext.measureHeight
|
||||||
|
|
||||||
|
sealed class Motion {
|
||||||
|
|
||||||
|
abstract fun reset(v: View)
|
||||||
|
|
||||||
|
abstract fun hideView(v: View)
|
||||||
|
|
||||||
|
abstract fun hide(v: View, anim: ViewPropertyAnimator)
|
||||||
|
|
||||||
|
abstract fun show(v: View, anim: ViewPropertyAnimator)
|
||||||
|
|
||||||
|
object CrossFade : Motion() {
|
||||||
|
override fun reset(v: View) {
|
||||||
|
v.alpha = 1f
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hideView(v: View) {
|
||||||
|
v.alpha = 0f
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hide(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.alpha(0f)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun show(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.alpha(1f)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
object SlideBottom : Motion() {
|
||||||
|
override fun reset(v: View) {
|
||||||
|
v.translationY = 0f
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hideView(v: View) {
|
||||||
|
v.translationY = v.measureHeight().toFloat()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hide(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.translationY(v.measureHeight().toFloat())
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun show(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.translationY(0f)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
object SlideTop : Motion() {
|
||||||
|
override fun reset(v: View) {
|
||||||
|
v.translationY = 0f
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hideView(v: View) {
|
||||||
|
v.translationY = -v.measureHeight().toFloat()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hide(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.translationY(-v.measureHeight().toFloat())
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun show(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.translationY(0f)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
object CheckEffect : Motion() {
|
||||||
|
override fun reset(v: View) {
|
||||||
|
v.scaleX = 1f
|
||||||
|
v.scaleY = 1f
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hideView(v: View) {
|
||||||
|
v.scaleX = 0f
|
||||||
|
v.scaleY = 0f
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun hide(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.scaleX(0f)
|
||||||
|
anim.scaleY(0f)
|
||||||
|
anim.interpolator = AccelerateDecelerateInterpolator()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun show(v: View, anim: ViewPropertyAnimator) {
|
||||||
|
anim.scaleY(1f)
|
||||||
|
anim.scaleX(1f)
|
||||||
|
anim.interpolator = AccelerateDecelerateInterpolator()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,57 @@
|
|||||||
|
package org.koitharu.kotatsu.utils.ext
|
||||||
|
|
||||||
|
import android.view.View
|
||||||
|
import org.koitharu.kotatsu.utils.anim.Duration
|
||||||
|
import org.koitharu.kotatsu.utils.anim.Motion
|
||||||
|
|
||||||
|
fun View.showAnimated(
|
||||||
|
effect: Motion,
|
||||||
|
duration: Duration = Duration.MEDIUM,
|
||||||
|
onDone: (() -> Unit)? = null
|
||||||
|
) {
|
||||||
|
if (this.visibility == View.VISIBLE) {
|
||||||
|
onDone?.invoke()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.clearAnimation()
|
||||||
|
effect.hideView(this)
|
||||||
|
this.visibility = View.VISIBLE
|
||||||
|
this.animate().also {
|
||||||
|
it.duration = context.resources.getInteger(duration.resId).toLong()
|
||||||
|
effect.show(this, it)
|
||||||
|
}.withEndAction(onDone)
|
||||||
|
.start()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun View.hideAnimated(
|
||||||
|
effect: Motion,
|
||||||
|
duration: Duration = Duration.MEDIUM,
|
||||||
|
onDone: (() -> Unit)? = null
|
||||||
|
) {
|
||||||
|
if (this.visibility != View.VISIBLE) {
|
||||||
|
onDone?.invoke()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.clearAnimation()
|
||||||
|
this.animate().also {
|
||||||
|
it.duration = context.resources.getInteger(duration.resId).toLong()
|
||||||
|
effect.hide(this, it)
|
||||||
|
}.withEndAction {
|
||||||
|
this.visibility = View.GONE
|
||||||
|
effect.reset(this)
|
||||||
|
onDone?.invoke()
|
||||||
|
}.start()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun View.showOrHideAnimated(
|
||||||
|
predicate: Boolean,
|
||||||
|
effect: Motion,
|
||||||
|
duration: Duration = Duration.MEDIUM,
|
||||||
|
onDone: (() -> Unit)? = null
|
||||||
|
) {
|
||||||
|
if (predicate) {
|
||||||
|
showAnimated(effect, duration, onDone)
|
||||||
|
} else {
|
||||||
|
hideAnimated(effect, duration, onDone)
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue