Getting the error “Java.lang.IllegalStateException Activity has been destroyed” when using tabs with ViewPager

前端 未结 13 1976
再見小時候
再見小時候 2020-11-22 11:53

I have an application that consists of using ActionBarSherlock in tab mode.I have 5 tabs and the content of each tab is handled using fragments. For tab2 though, I have a fr

13条回答
  •  太阳男子
    2020-11-22 12:29

    I had this error because I was using LocalBroadcastManager and I did:

    unregisterReceiver(intentReloadFragmentReceiver);
    

    instead of:

    LocalBroadcastManager.getInstance(this).unregisterReceiver(intentReloadFragmentReceiver);
    

提交回复
热议问题