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

后端 未结 13 1606
甜味超标
甜味超标 2020-12-08 09:39

I would like use a FloatingActionButton on my application, I read this : https://guides.codepath.com/android/Floating-Action-Buttons#google-s-official-support-library but wh

13条回答
  •  既然无缘
    2020-12-08 10:28

    Add these dependencies into your gradle file. This may solve the problem in some cases.

    dependencies {
       compile 'com.android.support:appcompat-v7:23.1.1'
       compile 'com.android.support:design:23.1.1'
       ...
    }
    

提交回复
热议问题