Attempt to invoke interface method 'void android.support.v7.widget.DecorContentParent.setWindowCallback(android.view.Window$Callback)'

后端 未结 2 780
执念已碎
执念已碎 2020-12-20 18:26

here is my project:

animated_path.xml:




        
2条回答
  •  爱一瞬间的悲伤
    2020-12-20 19:14

    Had a similar issue this morning. How I fix it:

    1. Remove application level attribute from your android manifest file android:theme="@style/AppTheme".
    2. Add activity level attribute instead like so:

      [Activity(MainLauncher = true, Theme = "@style/AppTheme")]
      

提交回复
热议问题