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

后端 未结 12 1711
清歌不尽
清歌不尽 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条回答
  •  深忆病人
    2021-02-05 01:41

    Make sure the library from which you declared the FloatingActionButton in the activity is the same as the one used for the layout markup

    For example have

    import com.google.android.material.floatingactionbutton.FloatingActionButton; in the activity and com.google.android.material.floatingactionbutton.FloatingActionButton as the tag for the layout

提交回复
热议问题