Android 6.0 Marshmallow : Weird error with fragment animation

前端 未结 4 1014
离开以前
离开以前 2021-02-04 04:08

One of my apps in the app store works perfectly fine with Android 5.0, but since today I have my device upgraded to 6.0 I get strange errors. I narrowed it down to the fragment

4条回答
  •  隐瞒了意图╮
    2021-02-04 04:52

    I got this exception and same problem Failed to dispatch window animation state change.android.os.DeadObjectException.

    apparently this happened because i forgot to mention activity in manifest file. I was able to fix it by adding activity in AndroidManifest.xml file.

    simply added following with activity class name and solved the problem

    example :

     
        
    

提交回复
热议问题