How to remove drawableleft

后端 未结 6 725
攒了一身酷
攒了一身酷 2020-12-29 01:06

I have a button and a text-view, text-view has a drawable-left. After click on button the drawable-left should be removed and a plain text should be set to Text-view, but I

6条回答
  •  青春惊慌失措
    2020-12-29 01:40

    The drawables of a TextView can be set programatically via the setCompoundDrawables method.

    So you could try this:

    textView.setCompoundDrawables(null, null, null, null);
    

    Or

    textView.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null);
    

提交回复
热议问题