setCompoundDrawables setCompoundDrawablesWithIntrinsicBounds

开发中,像标题栏左右侧显示带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
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。