25

在 xml 中,您可以在 TextView 中的文本的左侧、右侧、底部或顶部设置可绘制对象。有没有办法通过代码设置/更改这个drawable?

4

1 回答 1

66
TextView textView = (TextView)findViewById(R.id.myTxtView);
textView.setCompoundDrawablesWithIntrinsicBounds(
  R.drawable.icon, //left
  0, //top
  0, //right
  0);//bottom
于 2012-10-02T04:49:59.167 回答