android 使用java 代码设置 textview的图片

来源:互联网 发布:net域名名站 编辑:程序博客网 时间:2024/06/02 07:31
  Drawable drawable = getResources().getDrawable(R.drawable.icon);
                drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
               text.setCompoundDrawables(drawable, null, null, null);
                text.setCompoundDrawablePadding(10);
1 0