TextView——setCompoundDrawables用法

TextView——setCompoundDrawables用法  

Drawable drawable = mContext.getResources().getDrawable(R.drawable.duringtime);

 drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());//必须设置图片大小,否则不显示

 holder.time.setCompoundDrawables(drawable, null, null, null);

猜你喜欢

转载自huqiji.iteye.com/blog/2197420