`
zhong871004
  • 浏览: 62892 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

android fill_parent和match_parent的区别

 
阅读更多

其实,两者没有本质区别,主要android的设计师为了描述的准确性,在android2.2以后,将fill_parent改为了match_parent(当让以后的版本也兼容fill_parent)。

fill_parent:意思是填充父view,如果有兄弟节点的话,并不覆盖

match_parent:意思是完全覆盖到父view的范围,如果有兄弟节点的话,也会被覆盖,所以设计者认为match_parent的表达更合适

分享到:
评论

相关推荐

    Android 教程 PDF

    可以设置为`"fill_parent"`(占据父容器全部空间)、`"match_parent"`(与`"fill_parent"`等效)或`"wrap_content"`(根据内容自动调整尺寸)。 **1.2 示例代码** ```xml <LinearLayout xmlns:android=...

    Android学习笔记

    LinearLayoutCompat 线性布局 ...其中match_parent和fill_parent的意义相同,但官方更推荐match_parent. match_parent表示让当前控件的大小和父布局的大小一样,也就是由父布局来决定当前控件的大小 wrap_con

    Android开发教程之Android 五大布局--千锋培训

    android:layout_width="fill_parent" android:layout_height="fill_parent"> android:text="button" android:layout_width="fill_parent" android:layout_height="wrap_content" /> android:text=...

    Android布局

    - **android:layout_width** 和 **android:layout_height**:用于设定视图的宽高,可以选择`wrap_content`(视图自动调整大小以匹配内容)或`match_parent`(视图大小与父容器相同)。 **示例代码**: ```xml ...

    Android TabHost组件使用方法详解

    android:layout_width="match_parent" android:layout_height="match_parent"> android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> android:id=...

    Android的Layout完全介绍

    android:layout_width="fill_parent" android:layout_height="fill_parent"> android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="I am textview 1" /> android:...

    android_通讯录源码

    - `GridView`用于显示底部菜单,初始状态为隐藏(`android:visibility="gone"`), 宽度填满屏幕(`android:layout_width="fill_parent"`), 且位于屏幕底部(`android:layout_alignParentBottom="true"`). - `...

    高仿新版58加载动画Android-shapeLoadingView.zip

     android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"  android:paddingRight="@dimen/activity_horizontal_margin"  android:paddingTop="@dimen/activity_...

    Android中使用LinearLayout完成的内蒙古导览项目的代码清单 .pdf

    `layout_width`和`layout_height`都设置为`fill_parent`,表示占据父容器的全部宽度和高度。`orientation`属性设置为`vertical`,意味着子视图将按垂直方向排列。 在LinearLayout中,我们有一个TextView和一个...

    android移动应用开发-报告书.docx

    android:layout_height="match_parent" android:orientation="vertical" android:background="#C0C0C0"> android:id="@+id/textView1" android:layout_width="fill_parent" android:layout_height="wrap_...

    Android控件大全以及各布局空间的使用方式

    - `android:layout_width` 和 `android:layout_height`: 设置布局的宽度和高度,可以使用 `fill_parent` 或 `match_parent` 让布局填充整个父容器,`wrap_content` 让布局根据内容自动调整大小,也可以直接指定像素...

    android中的左右滑屏实现

    android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/editText1"> <!-- layout2.xml --> <LinearLayout xmlns:android=...

    android4.0 tabhost demo

    android:layout_width="match_parent" android:layout_height="match_parent"> android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> android:...

    Android学习指南之Layout 布局--千锋培训

    android:layout_width="match_parent" android:layout_height="match_parent"> android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button 1"/> android:layout_...

    Android 控件说明

    - `layout_width` 和 `layout_height`:用于定义视图的宽度和高度,可以使用`match_parent`(旧称`fill_parent`)来匹配父视图大小,或`wrap_content`来让视图根据其内容自动调整大小,也可以直接指定像素值。...

    Android 学习笔记

    然而,需要注意的是,从Android API Level 8(即Android 2.2 Froyo)开始,`fill_parent`已经被`match_parent`所取代,虽然两者在功能上没有区别,但`match_parent`的命名更符合语义,表示视图的大小将匹配其父元素...

    Android编写应用的布局说明

    2. **适配不同屏幕尺寸**:利用`wrap_content`和`match_parent`(等同于`fill_parent`)属性,以及`dp`单位,可以使布局适应各种屏幕尺寸和密度。同时,考虑使用多屏支持和资源目录(如`values-sw600dp`)来提供特定...

    android抽屉

    android:layout_height="fill_parent" android:handle="@+id/handle" android:content="@+id/content" android:orientation="vertical" android:id="@+id/slidingdrawer"> android:id="@id/handle" ...

Global site tag (gtag.js) - Google Analytics