I have 4 fragments. I switch among them by using hide
/show
transactions. One of them may have nested fragments which are added by replace
transaction. The issue is that if I add a nested fragment hide main fragment and show it again the onHiddenChanged
method of my nested fragment is not called. Why so? How can I determine when my nested fragment become visible?
Nested fragment lifecycle
3k views Asked by Lingviston At
2
I also came across the problem you are facing.
I found that hiding/showing a parent fragment had no effect on the child fragments' visible states, and wouldn't call
onHiddenChanged()
and would returnisVisible() = true
always.See my answer in another question for my workaround.
Basically I created my own
getIsVisible()
function on aBaseFragment
which recursively looks through any parents to find it's actual visible state. I am sure you could do something similar withonHiddenChanged()
by propagating it to all the child fragments.I know this is old, but maybe someone could benefit from this knowledge :)