美文网首页
setCompoundDrawables setCompound

setCompoundDrawables setCompound

作者: 初心一点 | 来源:发表于2019-01-12 11:47 被阅读6次

开发中,像标题栏左右侧显示带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

相关文章

网友评论

      本文标题:setCompoundDrawables setCompound

      本文链接:https://www.haomeiwen.com/subject/irnqdqtx.html