I ran into the problem of using Vector Drawable icons in Android 4.x. As you know, for compatibility with Vector Drawable, the app:srcCompat attribute is used, but it's not supported in this library.
I found a solution by enabling AppCompatDelegate.setCompatVectorFromResourcesEnabled(true) in my Activity. This works great and now in Android 4.x I can use Vector Drawable as a FAB icon, and also in a Speed Dial menu.
I ran into the problem of using Vector Drawable icons in Android 4.x. As you know, for compatibility with Vector Drawable, the
app:srcCompat
attribute is used, but it's not supported in this library. I found a solution by enablingAppCompatDelegate.setCompatVectorFromResourcesEnabled(true)
in my Activity. This works great and now in Android 4.x I can use Vector Drawable as a FAB icon, and also in a Speed Dial menu.