您的位置:首页 > 其它

Textview动态添加右图片

2016-07-04 16:13 239 查看
Drawable drawable;
TextView textview;
drawable = getResources().getDrawable(R.mipmap.work_shouqi_jiantou);
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
textview.setCompoundDrawables(null, null, drawable, null);


注:drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
       这句不写,不起作用

       setCompoundDrawables(left ,top ,right, bottom);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: