Android Studio FloatingActionButton error

后端 未结 7 843
小鲜肉
小鲜肉 2020-12-05 17:26

I installed Android Studio yesterday, and after battling multiple java and other errors, I have come to an error that I cannot seem to fix. I have not added anything or done

7条回答
  •  有刺的猬
    2020-12-05 18:14

    android.content.res.Resources$NotFoundException: Unable to find resource ID #0x1080029

    This exception is thrown by the resource APIs when a requested resource can not be found.

    You should use stable version .You can then start using the Design library with a single new dependency with :

    Do

    compile 'com.android.support:design:23.1.0'
    

    Then Clean-Rebuild-Sync Your IDE .Hope this helps .

    Don't

    compile 'com.android.support:design:23.2.0'
    

    Version 23.2.0 is buggy .Its not stable . You should go for stable above version 23.1.0 .

提交回复
热议问题