How to avoid recreating view on onCreate on Android?

前端 未结 11 1822
执笔经年
执笔经年 2021-01-17 22:18

I have a FragmentActivity that shows a contacts list.

Here is my onCreate method:

@Override
protected void onCreate(Bundle          


        
11条回答
  •  孤独总比滥情好
    2021-01-17 22:51

    when you are done with loading of the data in displayContacts(), you can save a flag(displayed_contacts) in shared preferences. In onCreate() check the preference value, and call your displayContacts() accordingly.

提交回复
热议问题