FragmentActivity NullPointer in onCreate savedInstanceState Bundle

前端 未结 1 1603
无人共我
无人共我 2020-12-18 13:52

If I background the app and resume it after a period of time I receive the following exception.
If I change orientation or background and resume the app straight away (t

相关标签:
1条回答
  • 2020-12-18 14:11

    the Parcelable.Creator<RunningLoadersList>() must be static like this

    public static final Parcelable.Creator<RunningLoadersList> CREATOR = 
    new Parcelable.Creator<RunningLoadersList>() {
    ...
    ...
    .
    }
    
    0 讨论(0)
提交回复
热议问题