You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have no problem with the demo project. It just happened on my project.
The backstack has many stacks.
I don't understand why you use Looper.myQueue().addIdleHandler instead of getHandler().post
I have tried to keep your version 1.0.6, only using getHandler ().post
--> This issue is resolved
i have the same problem,then modify the VisibleDelegate,enqueueDispatchVisible()、onpause(),use the origion taskDispatchSupportVisible and getHandler(),then it normal
override some functions to avoid affecting old fragments
BaseSimpleFragment
....
override fun lazyInit() {
super.lazyInit()
isInited = true
onRealVisible()
}
override fun onVisible() {
super.onVisible()
onSupportVisible()
}
override fun onInvisible() {
super.onInvisible()
onSupportInvisible()
}
open fun onSupportVisible() {
}
open fun onSupportInvisible() {
}
open fun initDataAndEvent() {
}
open fun onRealVisible() {
}
fun isSupportVisible(): Boolean {
return supportDelegate.isVisible
}
I have no problem with the demo project. It just happened on my project.
The backstack has many stacks.
I don't understand why you use
Looper.myQueue().addIdleHandler
instead ofgetHandler().post
I have tried to keep your version 1.0.6, only using getHandler ().post
--> This issue is resolved
Originally posted by @HuuNguyen312 in #11 (comment)
The text was updated successfully, but these errors were encountered: