ImageView加TextView可以用setCompoundDrawables代替

来源:互联网 发布:c语言delay函数头文件 编辑:程序博客网 时间:2024/04/18 08:16

当需要一个图片右边文字的时候尤其是很多Listview的Item,很多时候我们是一个用layout嵌套一个ImageView和TextView,这时候xml编辑器会提示can be replaced by one  and a compound drawable什么的,就是提醒我们可以只需要一个TextView设置,android:drawableLeft.、android:drawableRight等属性指定!

这个属性用代码是setCompoundDrawable,或者 

setCompoundDrawablesWithIntrinsicBounds。区别是前一个要先给Drawable设置setBounds(x,y,width,height);

0 0
原创粉丝点击