Skip to content

Instantly share code, notes, and snippets.

@chrisbanes
Created November 19, 2019 02:50
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save chrisbanes/a7371683c224464bf6bda5a25491aee0 to your computer and use it in GitHub Desktop.
Save chrisbanes/a7371683c224464bf6bda5a25491aee0 to your computer and use it in GitHub Desktop.
MotionLayout which support multiple listeners
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package app.tivi.ui.widget
import android.content.Context
import android.util.AttributeSet
import android.view.MotionEvent
import android.view.View
import androidx.constraintlayout.motion.widget.MotionLayout
import java.util.concurrent.CopyOnWriteArrayList
class MultiListenerMotionLayout @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0
) : MotionLayout(context, attrs, defStyleAttr) {
private val listeners = CopyOnWriteArrayList<TransitionListener>()
/**
* Add a [TransitionListener] which will be called as appropriate.
*/
fun addTransitionListener(listener: TransitionListener) {
listeners.addIfAbsent(listener)
}
/**
* Remove a previously added [TransitionListener].
*/
fun removeTransitionListener(listener: TransitionListener) {
listeners.remove(listener)
}
init {
super.setTransitionListener(object : TransitionListener {
override fun onTransitionTrigger(motionLayout: MotionLayout, triggerId: Int, positive: Boolean, progress: Float) {
listeners.forEach {
it.onTransitionTrigger(motionLayout, triggerId, positive, progress)
}
}
override fun onTransitionStarted(motionLayout: MotionLayout, startId: Int, endId: Int) {
listeners.forEach {
it.onTransitionStarted(motionLayout, startId, endId)
}
}
override fun onTransitionChange(motionLayout: MotionLayout, startId: Int, endId: Int, progress: Float) {
listeners.forEach {
it.onTransitionChange(motionLayout, startId, endId, progress)
}
}
override fun onTransitionCompleted(motionLayout: MotionLayout, currentId: Int) {
listeners.forEach {
it.onTransitionCompleted(motionLayout, currentId)
}
}
})
}
@Deprecated("Use addTransitionListener instead")
override fun setTransitionListener(listener: TransitionListener) {
throw IllegalArgumentException("Use addTransitionListener instead")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment