Error inflating class android.support.design.widget.FloatingActionButton

后端 未结 12 1883
清歌不尽
清歌不尽 2021-02-05 01:24

My app crashed because

Error inflating class android.support.design.widget.FloatingActionButton

This is my code in the XML



        
12条回答
  •  Happy的楠姐
    2021-02-05 01:40

    Tried your code, the problem is with the 23.4.0 library.

    Upgrade to 24.+ , there's no error in that lib.

    For example :

    implementation 'com.android.support:appcompat-v7:24.2.1' // appcompat library
    implementation 'com.android.support:design:24.2.1'
    

    You need to change the compile version to 24 too.

    compileSdkVersion 24
    

提交回复
热议问题