My app crashed because
Error inflating class android.support.design.widget.FloatingActionButton
This is my code in the XML
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"