onCreate() gets called when reopen from recent task after permission settings is changed

前端 未结 3 2038
离开以前
离开以前 2021-02-20 07:44

The question title may sounds complicated but here is my situation.

I have a map fragment within an activity. Simple. turn on Storage permission to allow display of Map,

3条回答
  •  时光取名叫无心
    2021-02-20 07:55

    I was having similar issues with the dynamic change in app's permission. After some dig what I understood might be helpful for you also.

    Changing permission cause termination of your application by the system and now if you open your app from overview screen, it will restart your application, which is the main reason for your crash because you might be performing an operation on fragment object, which is null now.

    An important point here to note is that before termination fragment state is saved in savedinstance object.

    To stop crash you should get fragment instance using this line of code -

    mapFragment = (MapFragment)getSupportFragmentManager().findFragmentByTag("MAP FRAG");
    

    Here "MAP FRAG" is a tag you have to give to your fragment.

    share if you have any confusion.

提交回复
热议问题