『ANDROID』Android: Multiple Fragments stack in each ViewPager Tab

来源:互联网 发布:淘宝卖的红酒能喝吗 编辑:程序博客网 时间:2024/05/29 04:35

原文地址:Android: Multiple Fragments stack in each ViewPager Tab


We will try to accomplish the following scenario:

MainActivity    |    |ContainerFragment    |    |    |_ _ _ Tab A    |        |_ _ _ Fragment 1    |        |    |        |_ _ _ Fragment 2    |        |    |        |_ _ _ Fragment 3    |        |    |        |_ _ _ ...    |            |_ _ _ Tab B    |        |_ _ _ Fragment 4    |        |    |        |_ _ _ Fragment 5    |        |    |        |_ _ _ Fragment 6    |        |    |        |_ _ _ ...    |    |_ _ _ Tab C    |        |_ _ _ Fragment 7    |        |    |        |_ _ _ Fragment 8    |        |    |        |_ _ _ Fragment 8    |        |    |        |_ _ _ ...

Check out the apk file and/or video to see the final result before going further:

https://github.com/tausiq/ViewPagerMultipleFragmentDemo


另外,还可以参考:

Separate Back Stack for each tab in Android using Fragments

0 0