Reputation: 331
My FAB is only showing the icon when I'm using a drawable resource, but not when I'm using a mipmap resource.
With a drawable resource:
With a mipmap resource:
Upvotes: 0
Views: 166
Reputation: 1
Replace : android:src="@mipmap/your_mipmap" with : android:foreground="@mipmap/your_mipmap"
Upvotes: 0