How To Call The Child's Parent For This Specified Child That Already Has A Parent
This is the code: public class HelpDetailsFragment extends Fragment { private static final String TAG = 'MeMoGame'; public static HelpDetailsFragment newInstance(int index) {
Solution 1:
The issue here is you are returning the container-- return container;
you should be returning mView in your case, the container is the actual container for the fragment in your activity layout
Post a Comment for "How To Call The Child's Parent For This Specified Child That Already Has A Parent"