How to set Floating Action Button image to fill the button?

后端 未结 7 1460
情歌与酒
情歌与酒 2021-01-11 17:27

Usually icons are set for floating action buttons, but I need to set an image, so I can make a circular image.

I added it to the project (using Android Studio-> New

相关标签:
7条回答
  • 2021-01-11 18:02

    Set scale for the float button in xml

    android:scaleX="2.0"
    

    Or you can do it programmaticaly:

    someButton.setScaleX(2.0f);
    someButton.setScaleY(2.0f);
    
    0 讨论(0)
提交回复
热议问题