`
zhangyf1987hb
  • 浏览: 83499 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

MATCH_PARENT和FILL_PARENT区别

阅读更多

有网友表示对于很多工程中的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).  

分享到:
评论

相关推荐

    Android学习笔记

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

    tab布局代码

    android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> android:id="@android:id/tabhost" android:layout_width="match_parent" android:layout_...

    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开发教程之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:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height=...

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

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

    自定义ScrollView 实现图片放大,上滑修改标题栏状态

    android:layout_height="match_parent"> android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> android:id="@+id/header_image" android:layout...

    ViewPager_fragment结合实现tab的4种方法

    android:layout_width="fill_parent" android:layout_height="wrap_content" /> android:id="@android:id/tabcontent" android:layout_width="0dp" android:layout_height="0dp" android:layout_weight="0" ...

    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:...

    高仿新版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_...

    Fragment制作tab样式向下兼容代码

    android:layout_height="match_parent"> android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> android:id="@android:id/tabs" android:layout_...

    CircleIndicator-一个轻量级的viewpager指示器 ,类似于nexus5 启动器的效果.zip

     android:layout_width="match_parent"  android:layout_height="match_parent">    android:id="@ id/viewpager_default"  android:layout_width="match_parent"  android:layout_height="match_...

    自定义tabhost

    android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:gravity="center_vertical" android:background="@drawable/tab_background"> <!-- ...

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

    - `Fill Mode`:指定子视图的尺寸,可以是具体的像素值、`wrap_content`(根据内容自动调整大小)或`fill_parent`(占据剩余空间)。 - `Weight`:权重属性,用于按比例分配子视图的大小。当多个子视图具有不同的...

    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 TabLayout 在宽屏幕上tab不能平均分配的问题

    android:layout_width="match_parent" android:layout_height="wrap_content" /> ``` 问题描述 当TabLayout 在宽屏幕的设备上,如平板横屏的时候,tab的宽度超过一定值后,就不在平均分配宽度,而是居中显示。...

    计算器源代码

    android:layout_height="fill_parent" android:weightSum="1"> android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> android:layout_width="match...

    CircularBarPager-可实现多个进度同时进行或按步进行的进度条.zip

     android:layout_height="match_parent"  android:layout_width="match_parent"  android:paddingLeft="30dp"  android:paddingRight="30dp"  android:layout_centerInParent="true"  app:progress_pager...

    Android代码-android菜单控制器view

    * PinterestView'layoutParams must match_parent or fill_parent, * just for cover the whole screen */ pinterestView = (PinterestView) findViewById(R.id.item_layout); /** * add item view into ...

Global site tag (gtag.js) - Google Analytics