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

从零开始学android<FrameLayout帧布局.十四.>

时间:2014-08-13 19:05:17      阅读:375      评论:0      收藏:0      [点我收藏+]

标签:风飞雪未扬   framelayout 帧布局   android布局   


FrameLayout布局(帧布局)就是在屏幕上开辟一个区域以填充所有的组件,但是使用FrameLayout布局会将所有的组件都放在屏幕的左上角,而且所有的组件可以层叠进行显示。
bubuko.com,布布扣
<?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/imageView1"
          android:layout_width="match_parent"
          android:layout_height="322dp"
          android:src="@drawable/KILL" />

    <Button
        android:id="@+id/button1"
        android:layout_width="240dp"
        android:layout_height="107dp"
        android:text="Button" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="154dp"
        android:layout_height="62dp"
        android:text="Large Text"
        android:textAppearance="?android:attr/textAppearanceLarge" />

  

</FrameLayout>



bubuko.com,布布扣

…………………………………………………………毫无美感的分割线…………………………………………………………
不需要xml文件,直接在JAVA文件中配置项目
package com.example.framelayout;

import android.os.Bundle;
import android.app.Activity;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);

		FrameLayout layout = new FrameLayout(this);
		// 为布局设置宽度和高度
		FrameLayout.LayoutParams LayoutParams = new FrameLayout.LayoutParams(
				ViewGroup.LayoutParams.FILL_PARENT,
				ViewGroup.LayoutParams.FILL_PARENT);
		// 为图片设置高度和宽度
		FrameLayout.LayoutParams imageLayoutParams = new FrameLayout.LayoutParams(
				ViewGroup.LayoutParams.MATCH_PARENT, 311);
		// 为按钮设置宽度和高度

		FrameLayout.LayoutParams buttonLayoutParams = new FrameLayout.LayoutParams(
				281, 173);
		// 为文字设置宽和高
		FrameLayout.LayoutParams textLayoutParams = new FrameLayout.LayoutParams(
				183, 85);

		ImageView imageView = new ImageView(this);// 创建ImageView对象
		imageView.setImageResource(R.drawable.kill);// 设置图片信息
		layout.addView(imageView, imageLayoutParams);// 将imageView添加到Framelayout布局当中

		Button button = new Button(this);//创建Button对象
		button.setText("button");//设置标题
		layout.addView(button, buttonLayoutParams);//将按钮增加到Framelayout布局当中
	
		TextView textView=new TextView(this);//创建textView对象
		textView.setText("TextView");//设置标题
		layout.addView(textView, textLayoutParams);//将TextView添加到Framelayout当中
		
		super.addContentView(layout,LayoutParams);//将framelayout添加到content中
	}

}

bubuko.com,布布扣


大家可以看到使用JAVA文件配置和使用xml文件配置的效果是相同的,XML布局的方式和动态布局大家可以根据自己的需要自行设定

下节预报:表格布局Tablelayout

从零开始学android<FrameLayout帧布局.十四.>,布布扣,bubuko.com

从零开始学android<FrameLayout帧布局.十四.>

标签:风飞雪未扬   framelayout 帧布局   android布局   

原文地址:http://blog.csdn.net/u013616976/article/details/38535485

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