博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android2.2中添加的match_parent和fill_parent没有区别
阅读量:4564 次
发布时间:2019-06-08

本文共 1308 字,大约阅读时间需要 4 分钟。

标题里已经把这个意思表达清楚了,两个参数意思一样,只是某大仙觉得match_parent更贴切,于是从2.2开始你两个词都可以用。那么如果考虑低版本的使用情况你就需要用fill_parent了。

下面是两者相同的证据,看android.view.ViewGroup里的静态嵌套类LayoutParams中的代码:

 

public static final int FILL_PARENT = -1;       /**       * Special value for the height or width requested by a View.       * MATCH_PARENT means that the view wants to be as big as its parent,       * minus the parent's padding, if any. Introduced in API Level 9.       */       public static final int MATCH_PARENT = -1;            /**       * Special value for the height or width requested by a View.       * WRAP_CONTENT means that the view wants to be just large enough to fit       * its own internal content, taking its own padding into account.       */

 

match_parent到底是什么类型呢?

其实从Android 2.2开始FILL_PARENT改名为MATCH_PARENT ,从API Level为8开始我们可以直接用MATCH_PARENT来代替FILL_PARENT,最后提醒大家,他们的定义本质是一样均为 -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).

转载于:https://www.cnblogs.com/warioland/archive/2011/10/26/2224824.html

你可能感兴趣的文章
MySQL 删除数据库
查看>>
JavaScript 字符串(String) 对象
查看>>
How to use VisualSVN Server and TortoiseSVN to host your codes and control your codes' version
查看>>
微信小程序picker组件 - 省市二级联动
查看>>
Dynamics CRM 给视图配置安全角色
查看>>
Eclipse修改已存在的SVN地址
查看>>
(转)使用 python Matplotlib 库绘图
查看>>
进程/线程切换原则
查看>>
正则表达式语法
查看>>
20165301 2017-2018-2 《Java程序设计》第四周学习总结
查看>>
Vue的简单入门
查看>>
urllib 中的异常处理
查看>>
通过SQL Server的扩展事件来跟踪SQL语句在运行时,时间都消耗到哪儿了?
查看>>
20181227 新的目标
查看>>
androidtab
查看>>
php 事件驱动 消息机制 共享内存
查看>>
剑指offer 二叉树的bfs
查看>>
LeetCode Maximum Subarray
查看>>
让我们再聊聊浏览器资源加载优化
查看>>
underscore demo
查看>>