码迷,mamicode.com
首页 > 移动开发 > 详细

Android UI布局之FrameLayout

时间:2014-11-05 11:00:17      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:android   framelayout   

一个FrameLayout对象就好比一块屏幕上提前预定好的空白区域,然后可以填充一些元素到里边,比方说一张图片等。需要注意的是,所有的元素都被放置在FrameLayout区域最左边上的区域。而且无法为这些元素指定一个确切的位置。如果一个FrameLayout里边有多个子元素,那么后边的子元素的显示会重叠在前一个元素上。

实例:LayoutDemo
运行效果:
bubuko.com,布布扣

代码清单:
布局文件:frame_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <ImageView
        android:id="@+id/photo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bg"
    />
</FrameLayout>


android:id      定义组件的id,在应用程序中,我们通过这个id就可以访问到定义的这个元素。
android:layout_width="match_parent" 和android:layout_height="match_parent"     表示FrameLayout布局可以在x轴方向和y轴方向填充满父容器的空间。
android:layout_width="wrap_content" 和android:layout_height+"wrap_content"     表示ImageView元素的长和宽只需要将bg.jpg包裹起来即可,并不需要填充满父容器。

Java源代码文件:FrameLayoutActivity.java
package com.rainsong.layoutdemo;

import android.app.Activity;
import android.os.Bundle;

public class FrameLayoutActivity extends Activity
{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.frame_layout);
    }
}

Android UI布局之FrameLayout

标签:android   framelayout   

原文地址:http://blog.csdn.net/hantangsongming/article/details/40817977

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!