Android 动态生成布局 (多层嵌套)

Android 除了可以加载xml文件,显示布局外,也可以代码生成布局,并通过setContentView(View view)方法显示布局。单独的一层布局,如一个主布局加一个控件(如Button\imageView等)动态生成代码比较简单,下面只给出示例代码:

package com.example.android_dongtaishengcheng;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.RelativeLayout;
import android.widget.Toast;
import android.widget.RelativeLayout.LayoutParams;

public class MainActivity extends Activity
{
    RelativeLayout relativeLayout = null;
    private Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
	super.onCreate(savedInstanceState);
	relativeLayout = new RelativeLayout(this);
	LayoutParams params = new LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT,
		RelativeLayout.LayoutParams.MATCH_PARENT);
	relativeLayout.setLayoutParams(params);
	relativeLayout.setBackgroundResource(R.color.back);
	setContentView(relativeLayout);

	button = new Button(this);
	LayoutParams params2 = new LayoutParams(300, 300);
	button.setLayoutParams(params2);
	params2.addRule(RelativeLayout.CENTER_IN_PARENT);
	button.setText("hello");
	relativeLayout.addView(button);
	button.setOnClickListener(new View.OnClickListener()
	{

	    @Override
	    public void onClick(View v)
	    {
		// TODO Auto-generated method stub
		startActivity(new Intent(MainActivity.this,SecondActivity.class));
	    }
	});
    }
}

下面进入重点:多层嵌套布局的动态生成。

情景描述:父布局是一个线性布局,其子布局按竖直方向排列,子布局的子布局也是一个线性布局,按水平方向排列。

其实很简单,关键点在于,如何控制主布局的子布局换行显示,即实现Orientation = "vertical"。可以在子布局外在加一层布局,即下面的drawParent()方法,该方法用来生成父布局的直接子布局,drawView()方法用来生成直接子布局的子布局(该布局也是多层嵌套)。可以实现如下图效果:

贴出代码如下:

/**
 *
 */
package com.example.android_dongtaishengcheng;
import android.R.integer;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.LinearLayout.LayoutParams;

/**
 * @author zhiyuan
 *
 * 2014-5-29 上午10:44:44
 *
 */
public class SecondActivity extends Activity
{
    LinearLayout layout = null;
    LinearLayout line2 = null;
    LinearLayout line3 = null;
    LinearLayout line4 = null;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
	// TODO Auto-generated method stub
	super.onCreate(savedInstanceState);
	layout = new LinearLayout(this);
	LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
	layout.setLayoutParams(params);
	layout.setOrientation(LinearLayout.VERTICAL);
	setContentView(layout);

	// layout.addView(drawView(this));
	line2 = (LinearLayout) drawParent(this);
	line3 = (LinearLayout) drawParent(this);
	line4 = (LinearLayout) drawParent(this);
	for (int i = 0; i < 2; i++)
	{
	    line2.addView(drawView(SecondActivity.this, i));
	}
	for (int i = 0; i < 4; i++)
	{
	    line3.addView(drawView(SecondActivity.this, i));
	}
	for(int i = 0; i < 5; i++){
	    line4.addView(drawView(SecondActivity.this, i));
	}
	layout.addView(line2);
	layout.addView(line3);
	layout.addView(line4);
    }
    //生成子布局的子布局
    public View drawView(Context context, int count)
    {

	LinearLayout layout = new LinearLayout(context);
	LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT,
		LayoutParams.WRAP_CONTENT, 1);
	params.gravity = Gravity.CENTER;
	layout.setOrientation(LinearLayout.HORIZONTAL);
	layout.setLayoutParams(params);
	if (count == 1)
	{
	    layout.setBackgroundResource(R.color.back);
	}
	RelativeLayout relativeLayout = new RelativeLayout(context);
	android.widget.RelativeLayout.LayoutParams params3 = new android.widget.RelativeLayout.LayoutParams(
		android.widget.RelativeLayout.LayoutParams.MATCH_PARENT,
		android.widget.RelativeLayout.LayoutParams.WRAP_CONTENT);
	relativeLayout.setLayoutParams(params3);
	/*
	 * ImageView imageView = new ImageView(context); LayoutParams params2 = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
	 */
	Button imageView = new Button(context);
	android.widget.RelativeLayout.LayoutParams params2 = new android.widget.RelativeLayout.LayoutParams(android.widget.RelativeLayout.LayoutParams.WRAP_CONTENT,
		android.widget.RelativeLayout.LayoutParams.WRAP_CONTENT);
	//imageView.setGravity(RelativeLayout.CENTER_IN_PARENT);
	imageView.setText("测试");
	params2.addRule(RelativeLayout.CENTER_IN_PARENT);

	// imageView.setBackgroundResource(R.drawable.ic_launcher);
	imageView.setLayoutParams(params2);

	/*
	 * TextView textView = new TextView(context); LayoutParams params3 = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); textView.setText("测试专用");
	 * textView.setLayoutParams(params3);
	 */

	relativeLayout.addView(imageView);
	// layout.addView(textView);
        layout.addView(relativeLayout);
	return layout;
    }
    //生成主布局的子布局
    public View drawParent(Context context)
    {
	LinearLayout layout = new LinearLayout(context);
	LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
	// params.gravity = Gravity.CENTER_HORIZONTAL;
	layout.setOrientation(LinearLayout.HORIZONTAL);
	layout.setLayoutParams(params);
	return layout;
    }

}

附Demo下载地址:http://download.csdn.net/detail/laoziyueguo3/7423939

Android 动态生成布局 (多层嵌套)

时间: 2024-10-03 08:30:37

Android 动态生成布局 (多层嵌套)的相关文章

Android动态添加布局

//1.利用LayoutInflater的inflate动态加载XML mLinearLayout = (LinearLayout)findViewById(R.id.LinearLayout_ID); LayoutInflater layoutInflater = LayoutInflater.from(context); View view = layoutInflater.inflate(resource--需要加载的XML, null); XML:resource = R.layout.

Android动态改变布局,比如登陆弹出软键盘,登陆框上移(转载)

Android动态改变布局 http://www.cnblogs.com/angeldevil/p/3836256.html 遇到这么个需求,先看图:      其实是一个软件的登录界面,初始是第一个图的样子,当软键盘弹出后变为第二个图的样子,因为登录界面有用户名.密码.登录按钮,不这样的话软键盘弹出后会遮住登录按钮(其实之前的实现放到了ScrollView里面,监听软键盘弹出后滚动到底部,软键盘隐藏后滚动到顶部,也是可以的). 最简单的方法就是多加几个冗余的View,根据软键盘的状态隐藏不需要

【Android自定义控件】支持多层嵌套RadioButton的RadioGroup

前言 非常喜欢用RadioButton+RadioGroup做Tabs,能自动处理选中等效果,但是自带的RadioGroup不支持嵌套RadioButton(从源码可看出仅仅是判断子控件是不是RadioButton),本文参考RadioGroup修改了一个支持嵌套CompoundButton的控件,非常实用. 声明 欢迎转载,但请保留文章原始出处:) 博客园:http://www.cnblogs.com 农民伯伯: http://over140.cnblogs.com 正文 /** * 支持嵌套

Android动态生成表格

最近刚刚学习完Android的五大布局,现在我们进一步深入学习,尝试做一个动态生成表格功能的例子 样式布局代码如下: 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4

Android 动态解析布局,实现制作多套主题

之前做过一个项目(随心壁纸),主要展示过去每期的壁纸主题以及相应的壁纸,而且策划要求,最好可以动态变换主题呈现方式,这样用户体验会比较好.嗯,好吧,策划的话,咱们也没法反驳,毕竟这样搞,确实很不错.于是开始去研究这方面的东西. 首先,我想到的是照片墙效果,改变图片就能有不同的呈现方式.可是这样的话,文字以及更深层的自定义效果,就无法实现了.然后,思考了下,决定仿照android原生布局文件解析方式,自己去动态解析布局. 先来看下android 原生布局文件解析流程: 第一步:调用LayoutIn

Android动态生成课程表 详解

根据提供的课程信息,动态生成课程表.不同于网上流传的课表形式,课程节数是固定,本课表的课程节数不固定. 1.效果图 每天共有12节课,上课节数每天都不同. 2.布局文件代码 周一到周日是  7个竖直线性布局文件,其他皆为辅助标题或序号. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools

Android动态生成按钮样式

动态生成按钮样式 使用: int borderColor = Color.parseColor("#2E3135"); int bgColor = Color.parseColor("#00FF00"); // 设置View背景样式,有边框宽度.边框颜色.圆角度数.背景颜色. GradientDrawable shape = DrawableUtils.createShape(1, 4, borderColor, bgColor); btn1.setBackgrou

Android 动态改变布局属性RelativeLayout.LayoutParams.addRule()

我们知道,在 RelativeLayout 布局中有很多特殊的属性,通常在载入布局之前,在相关的xml文件中进行静态设置即可. 但是,在有些情况下,我们需要动态设置布局的属性,在不同的条件下设置不同的布局排列方式,这时候就需要用到 RelativeLayout.LayoutParams.addRule() 方法,该方法有两种重载方式: addRule(int verb) :用此方法时,所设置节点的属性不能与其它兄弟节点相关联或者属性值为布尔值(布尔值的属性,设置时表示该属性为 true,不设置就

Android 动态生成对话框和EditText

/** * (获取输入) */ private void showInputDialog() { ScrollView scrollview = getInitView() ; final LinearLayout layout = (LinearLayout) scrollview.findViewById(30) ; new AlertDialog.Builder(this) .setTitle("请输入") .setIcon(android.R.drawable.ic_dialo