fill_parent设置一个顶部布局或控件强制性让它布满整个屏幕。(这是不管内容大小,直接适应整个屏幕的大小,例长度设置了这,就只有长度适应屏幕的长度)

wrap_content布局指根据视图内部内容自动扩展以适应其大小。(简单来说根据里面的图片或文字等内容的大小去适应,例如按钮内容就button cjp两个英文字这么大,所以按钮长和宽就适应这两个英文字大小。)

1. wrap_content

< ?xml version="1.0" encoding="utf-8"?>
< RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<Button
        android:id="@+id/btnButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button CJP"/>

< /RelativeLayout>

2. fill_parent – width

< ?xml version="1.0" encoding="utf-8"?>
< RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<Button
        android:id="@+id/btnButton1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Button CJP"/>

< /RelativeLayout>

3. fill_parent – height

< ?xml version="1.0" encoding="utf-8"?>
< RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<Button
        android:id="@+id/btnButton1"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:text="Button CJP"/>

< /RelativeLayout>

4. fill_parent – width, height

< ?xml version="1.0" encoding="utf-8"?>
< RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<Button
        android:id="@+id/btnButton1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="Button CJP"/>

< /RelativeLayout>

 
 

最新文章

  1. iOS dealloc 不被调用的问题
  2. Spring Data JPA @EnableJpaRepositories配置详解
  3. 开源磁力搜索爬虫dhtspider原理解析
  4. JDK、Jmeter、Android环境变量配置
  5. 【转】Spring 获取web根目录 (Spring线程获取web目录/路径/根目录,普通类获取web目录)
  6. 如何用ZBrush确定头部五官的位置
  7. nyist 597 完数?
  8. 终止jQuery的$.ajax方法abort
  9. HTML目录
  10. MapReduce实战:统计不同工作年限的薪资水平
  11. CentOS配置ftp服务器
  12. dos命令(入门)
  13. mssql sqlserver 使用sql脚本 清空所有数据库表数据的方法分享
  14. maven 一些整理
  15. Hadoop2.X管理与开发
  16. DPDK安装方法 17.12.13
  17. ASP入门(十六)-ASP开发的规范
  18. 2. 决策树(Decision Tree)-ID3、C4.5、CART比较
  19. Python3 tesseract加载chi_sim异常停止工作
  20. 实验吧web天网管理系统

热门文章

  1. ssh常用
  2. C#访问修饰符比较
  3. 单片机c语言教程:C51循环语句
  4. 使用 Docker 部署 MongoDB 分片
  5. linux环境配置nginx导致页面不刷新
  6. KVM WEB管理工具webvirtmgr安装和使用
  7. Python如何实现单例模式?其他23种设计模式python如何实现?
  8. Python3.6全栈开发实例[011]
  9. OC、C#与JAVA语法特点一些异同(差集&amp;交集)
  10. spring中配置缓存—ehcache