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
3.1k Views Asked by Lingviston At
2
There are 2 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in ANDROID-FRAGMENTS
- Android - No view found for fragment
- Fragment AsyncTask not executing after back button pressed
- I want to Show Simple Toast Message When User Click On Media Controller button Pause/Start/Stop in video View Using Media Controller
- Call special fragment in Navigation Drawer Activity from separate Activity
- Android FragmentViewPager in Fragment
- How to restrict fragment from adding to top of stack if it already exist in the top of stack in android
- Android Studio - Illegal character 8204 error
- Adapter ListView not refreshing from Activity
- Fragment's Transaction replace on API-21 is staying behind
- Integrating Localytics - FragmentActivity
- Null pointer exception on view pager swipe
- Error:(24, 51) error: incompatible types: FragmentAcitvity cannot be converted to Fragment
- How to get menu options in actionbar aligned with fragments?
- Using Edittext in Fragment Activities outside the onCreateView method
- Clicking CardView to load a fragment
Related Questions in ANDROID-NESTED-FRAGMENT
- FragmentTabHost from Navigation Drawer
- Fragment Layout Not Adding Up More Views
- Android - Nested Fragments
- Android : Parent fragment of a nested fragment
- Android : Referencing child fragment from parent fragment
- Possible to retain state of child fragment when navigating back from another activity?
- Android Fragments NullPointerException error
- Nested fragment lifecycle
- Fragment A calls fragment B - B does a popbackstack - where does it return in A
- Nested fragments - Screen of Frag2 stays empty
- Nested fragment issue - frag1 calls frag2 which has an impact on the listview from frag1
- No view found for ID xxx for fragment (nested fragments)
- ViewPager's Fragments disappear
- Adding a Tab with Fragments inside a Tab Fragment
- Can't invoke getChildFragmentManager in Fragment
Related Questions in FRAGMENT-LIFECYCLE
- Where to restore fragment state that is inside ViewPager
- AppCompat Fragment lifecycle changed
- android - fragment backstack with bottomnavigationview onSaveInstanceState does not call properly
- Nested fragment lifecycle
- Lifecycle of fragments when user "quits"
- Android Fragment onPause event called late with FragmentPagerAdapter
- Explanation needed for - Blank Fragment Java code in Android Studio
- android fragment isRemoved method
- Save interface (Listener) in onSaveInstanceState
- Viewpager Fragment 1 onCreateView is not always being called
- Livedata observer, wait for onResume to complete and then use the data
- Where to initiate views in Fragment? onViewCreated or onActivityCreated
- Fragment Lifecycle
- Fragments in a ViewPager – Tapping a button inside current frag effects the fragment after it NOT the current/visible frag
- Pass onActivityResult() data to the same Fragment which is not yet ready
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
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() = truealways.See my answer in another question for my workaround.
Basically I created my own
getIsVisible()function on aBaseFragmentwhich 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 :)