码迷,mamicode.com
首页 > 其他好文 > 详细

match_parent和fill_parent的区别(转)

时间:2014-10-13 18:14:59      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:android   http   os   ar   sp   art   on   amp   ad   

有网友表示对于很多工程中的MATCH_PARENT出现在layout中感到不明白,过去只有FILL_PARENT和WRAP_CONTENT那么match_parent到底是什么类型呢? 其实从Android 2.2开始FILL_PARENT改名为MATCH_PARENT ,从API Level为8开始我们可以直接用MATCH_PARENT来代替FILL_PARENT,最后Android123提醒大家,他们的定义本质是一样均为-1,只是换了个别名,可能为了更准确些,比如最终在SDK中的定义为:

fill_parent   -1  The view should be as big as its parent (minus padding). This constant is deprecated starting from API Level 8 and is replaced by match_parent.  
match_parent   -1 The view should be as big as its parent (minus padding). Introduced in API Level 8.  
wrap_content   -2  The view should be only big enough to enclose its content (plus padding).  

match_parent和fill_parent的区别(转)

标签:android   http   os   ar   sp   art   on   amp   ad   

原文地址:http://www.cnblogs.com/qq78292959/p/4022112.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!