您的位置:首页 > 移动开发 > Android开发

Android fill_parent和wrap_content分析

2015-10-20 16:06 465 查看
(?)[+]
1 wrap_content
2 fill_parent width
3 fill_parent height
4 fill_parent width height

fill_parent设置一个顶部布局或控件强制性让它布满整个屏幕。

wrap_content布局指根据视图内部内容自动扩展以适应其大小。


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>



版权声明:本文为博主原创文章,未经博主允许不得转载。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: