I used this library https://github.com/futuresimple/android-floating-action-button. How can I change the image of the main button? I want to change the button image right af
In the Material design version:
defaultConfig {
vectorDrawables.useSupportLibrary = true // For srcCompat
}
dependencies {
implementation 'com.google.android.material:material:'
}
app:srcCompat="@drawable/ic_google"
app:tint="@color/colorGoogle"
More documentation: https://material.io/develop/android/components/floating-action-button/