fill_parent、wrap_content和match_parent的区别

编程技术  /  houtizong 发布于 3年前   100

fill_parent、wrap_content和match_parent的区别:

 

1)fill_parent

  设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或控件为fill_parent将强制性让它布满整个屏幕。

2) wrap_content

  设置一个视图的尺寸为wrap_content将强制性地使视图扩展以显示全部内容。以TextView和ImageView控件为例,设置为wrap_content将完整显示其内部的文本和图像。布局元素将根据内容更改大小。设置一个视图的尺寸为wrap_content大体等同于设置Windows控件的Autosize属性为True。

3)match_parent
  Android2.2中match_parent和fill_parent是一个意思 .两个参数意思一样,match_parent更贴切,于是从2.2开始两个词都可以用。那么如果考虑低版本的使用情况你就需要用fill_parent了

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


下面是两者相同的证据,看android.view.ViewGroup里的静态嵌套类LayoutParams中的代码:
01
public static final int FILL_PARENT = -1;
02   /** 
03    * Special value for the height or width requested by a View. 
04    * MATCH_PARENT means that the view wants to be as big as its parent, 
05    * minus the parent's padding, if any. Introduced in API Level 8. 
06    */
07   
public static final int MATCH_PARENT = -1;
08   /** 
09    * Special value for the height or width requested by a View. 
10    * WRAP_CONTENT means that the view wants to be just large enough to fit 
11    * its own internal content, taking its own padding into account. 
12    */

 

引用博客地址:

http://blog.csdn.net/xyz_fly/article/details/7837101

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客