Skip to content Skip to sidebar Skip to footer

Does Scrollview Work In Fragments?

I have an employeeList fragment which upon access crashes the app. There are no squiggly lines in code, neither any alarms in the stack trace. I have a hunch that scrollView might

Solution 1:

Replace:

FragmentTransactionft= getFragmentManager().beginTransaction();

With:

FragmentTransactionft= getChildFragmentManager().beginTransaction();

Post a Comment for "Does Scrollview Work In Fragments?"