Android Lifecycle management of Fragments within ViewPager and FragmentPagerAdapter

前端 未结 3 815
迷失自我
迷失自我 2020-12-30 05:24

I have been struggling to find out what the correct management of Fragments within a FragmentActivity with a ViewPager is. Before I go into details

3条回答
  •  再見小時候
    2020-12-30 05:40

    How about adding this to Activity Tag in your manifest:

    android:configChanges="orientation"
    

    or this for API 13 or higher

    android:configChanges="orientation|screenSize" 
    

    so it won't recreate your fragments when it changes orientation..

提交回复
热议问题