开发中,像标题栏左右侧显示带icon的文本样式,我们经常会用到TextView的如下2个方法
setCompoundDrawables(left, top, right, bottom)
setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom)
意思是:设置Drawable显示在text的左、上、右、下位置
这里主要说下两个方法区别:
- setCompoundDrawables 画的drawable的宽高是按drawable.setBound()设置的宽高,
所以才有The Drawables must already have had setBounds(Rect) called- 使用之前必须使用Drawable.setBounds设置Drawable的长宽,否则直接调用设置是么有效果的
- setCompoundDrawablesWithIntrinsicBounds是画的drawable的宽高是按drawable固定的宽高,所以才有The Drawables' bounds will be set to their intrinsic bounds
网友评论