首页 > 移动平台 > 详细

android setCompoundDrawables和setCompoundDrawablesWithIntrinsicBounds差别

时间:2016-03-13 21:11:52      阅读:192      评论:0      收藏:0      [点我收藏+]

手工设置文本与图片相对位置时。经常使用到例如以下方法:

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.

即通过getIntrinsicWidth()与getIntrinsicHeight()获得

android setCompoundDrawables和setCompoundDrawablesWithIntrinsicBounds差别

原文:http://www.cnblogs.com/bhlsheji/p/5273123.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!