Change image Floating Action Button Android

前端 未结 9 476
旧时难觅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:36

    From https://developer.android.com/reference/android/support/design/widget/FloatingActionButton.html

    As this class descends from ImageView, you can control the icon which is displayed via setImageDrawable(Drawable).

    Or you can use setImageResource():

    fab.setImageResource(R.drawable.ic_shopping_cart_white);
    

提交回复
热议问题