在代码中改变TextView的drawableLeft或drawableRight的图片资源

  1. drawableLeft
在代码中改变TextView的drawableLeft或drawableRight的图片资源_第1张图片
left.png

代码如下:

Drawable drawable = context.getResources().getDrawable(R.mipmap.ic_pay_koukuan);  
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());  
textView.setCompoundDrawables(drawable, null, null, null);  
  1. drawableRight


    在代码中改变TextView的drawableLeft或drawableRight的图片资源_第2张图片
    right.png

代码如下:

Drawable drawable = context.getResources().getDrawable(R.mipmap.ic_pay_koukuan);  
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());  
textView.setCompoundDrawables(null, null, drawable, null);  

你可能感兴趣的:(在代码中改变TextView的drawableLeft或drawableRight的图片资源)