TapTargetView
TapTargetView copied to clipboard
On dismiss of TapTargetView, recycler view scrolls
Version used: 1.13.3 Android version: Android-9
On dismiss of TapTargetView, recycler view scrolls automatically. Why is this happening ? How to resolve this issue ? Why TapTargetView dismiss is affecting other UI elements ?
I've come across the same issue, if implemented the following temporary fix:
TapTargetView.Listener() {
override fun onTargetDismissed(view: TapTargetView?, userInitiated: Boolean) {
view?.visibility = View.GONE
super.onTargetDismissed(view, userInitiated)
}
}
Hope this works for you too.
It works! :) Can you explain why it works pls :)
It works! :) Can you explain why it works pls :)
Its been a while since I figured this out, so unfortunately I can't explain why it works.
bad news, it doesn't work on android 8 😢