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

后端 未结 12 1882
清歌不尽
清歌不尽 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:42

    I had the same problem

    I faced the same issue with Pre-Lolipop version and to resolve it, I just changed "android:src" to "app:srcCompat" & it worked for me.

    To make compatibility with older version and if you're using a Vector graphics (as drawable assets) you should use:

    app:srcCompat="@drawable/you_graphics"
    

    instead of:

    android:src="@drawable/your_graphics"
    

提交回复
热议问题