Programmatically change drawableLeft of Button

后端 未结 5 1216
太阳男子
太阳男子 2021-02-09 00:50

I\'m using a Button

5条回答
  •  余生分开走
    2021-02-09 01:30

    Try this:

    int imgResource = R.drawable.left_img;
    button.setCompoundDrawablesWithIntrinsicBounds(imgResource, 0, 0, 0);
    

    Reference

提交回复
热议问题