Top "Android-nested-fragment" questions

Nested android fragments represent fragments which are embedded in other fragments.

getChildFragmentManager() on programmatically (dynamically) added Fragments?

How to use (or "Can we use") getChildFragmentManager() on programmatically (dynamically) added Fragments? Here is my example. I have one …

android android-fragments android-nested-fragment
Sending data from nested fragments to parent fragment

I have a Fragment FR1 that contains several Nested Fragments; FRa, FRb, FRc. These Nested Fragments are changed by pressing …

android android-fragments parameter-passing android-nested-fragment
getParentFragment returning null

I have a Fragment that has a FrameLayout. This first fragment (A) loads inside its Framelayout another fragment (B). When …

android android-fragments android-nested-fragment
FragmentManager popBackStack doesn't remove fragment

I'm implementing menu navigation using Fragments. So I begin with Home, and then users can navigate to diferent sections and …

android android-fragments android-nested-fragment fragmentmanager
onActivityResult() not called in new nested fragment API

I have been using the new nested fragment API that Android includes in the support library. The problem that I …

android android-fragments android-nested-fragment
Android : Parent fragment of a nested fragment

A getParentFragment() from my nested fragment is returning a null. I realise that getting a null means that the fragment …

android android-fragments android-nested-fragment
Dynamically changing the fragments inside a fragment tab host?

I have one main activity which is fragment activity here I am setting two tabs with two fragments A and …

android android-fragments android-tabhost fragment-tab-host android-nested-fragment
Where to call getChildFragmentManager()?

Problem According to the Google's docs: You can now embed fragments inside fragments. This is useful for a variety of …

android android-fragments android-viewpager fragmentmanager android-nested-fragment
Nested fragments disappear during transition animation

Here's the scenario: Activity contains fragment A, which in turn uses getChildFragmentManager() to add fragments A1 and A2 in its …

android android-fragments android-support-library android-nested-fragment
Nested Fragments and The Back Stack

Does the Back Stack support interaction with nested Fragments in Android? If it does, what am I doing wrong? In …

android android-fragments android-nested-fragment