hello aghajari
I have a question
I'm using five "fragments" for one "activity" in my app.
One "fragment" is again using two "fragments". This "fragment" has two "fragments" doing "show/hide", not "attach" depending on the button.
In issue #4
return supportFragmentManager.findFragmentById(R.id.container)?.view?.let {
ZoomHelper.getInstance().dispatchTouchEvent(ev!!, it)
}!! || super.dispatchTouchEvent(ev)
You advised this code, it works very well when "fragment" is attached or detached
However, after attaching another fragment from the existing "fragment", if you detach the fragment and show "fragment", the displayed "fragment" does not zoom.
What should I do in this case?
hello aghajari
I have a question
I'm using five "fragments" for one "activity" in my app.
One "fragment" is again using two "fragments". This "fragment" has two "fragments" doing "show/hide", not "attach" depending on the button.
In issue #4
You advised this code, it works very well when "fragment" is attached or detached
However, after attaching another fragment from the existing "fragment", if you detach the fragment and show "fragment", the displayed "fragment" does not zoom.
What should I do in this case?