Change image Floating Action Button Android

前端 未结 9 474
旧时难觅i
旧时难觅i 2020-12-16 09:19

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

9条回答
  •  离开以前
    2020-12-16 09:39

    In the Material design version:

    • build.gradle (app)
    defaultConfig {
        vectorDrawables.useSupportLibrary = true // For srcCompat
    }
    
    dependencies {
        implementation 'com.google.android.material:material:'
    }
    
    • XML (for set icon)
    app:srcCompat="@drawable/ic_google"
    app:tint="@color/colorGoogle"
    

    More documentation: https://material.io/develop/android/components/floating-action-button/

提交回复
热议问题