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

后端 未结 2 779
执念已碎
执念已碎 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")]
      
    0 讨论(0)
  • 2020-12-20 19:14

    This issue occurs when your buildToolsVersion is not updated to match the version of playservices and other dependencies

    Check here for the latest version:

    https://developer.android.com/studio/releases/build-tools.html.

    0 讨论(0)
提交回复
热议问题