Android如何使用代码动态生成界面

本文介绍了在Android开发中如何使用代码动态创建界面,相比XML布局,动态生成UI更适用于变化灵活的需求。通过实例展示了如何动态创建TableLayout,并添加监听事件,适合不确定行数和列数的表格场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

我们最常用使用XML来编写Android应用程序的UI,这样的好处是方便快捷可视化,而且维护和修改特别容易,但是它是静态的。如果我们要做的程序的界面是固定的,用XML固然是最好的选择,但是如果我们需要动态、灵活地控制UI,使用代码来动态生成UI无疑使最好的办法。


在XML中,我们使用的五大布局:LinearLayout(线性布局)、RelativeLayout(相对布局)、TableLayout(表格布局)、AbsoluteLayout(绝对布局)和FrameLayout(帧布局)在Android中也有对应的类来表示。


举个例子,我现在需要显示一个表格,表格的行数和列数及其内容都不确定,如果在XML中,这是不可能实现的。

先给大家看一下成品:(下面的代码只给大家展示如何实现,表格里面的内容忽略)


首先,新建一个不带任何控件的XML文件

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

    <TableLayout
        android:id="@+id/tableLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </TableLayout>

</LinearLayout>

在代码中新建一个TableLayout:


	// TODO 显示表格信息
	private void displayRegeditedInfo()
	{
		Iterator
   
   
    
     iterator = iterable.iterator();
		ICells
    
    
     
      iCells = GlobalVariable.manager
				.createPersonDataCells(IInspectionManager.CS_PERSON_LIST_CELLS);
		boolean flag = true;// 标题栏为true,内容栏位false
		int colorChange = 1;// 用来判断单双行,以显示不同的颜色
		TableLayout tableLayout = (TableLayout) findViewById(R.id.tableLayout);
		tableLayout.setStretchAllColumns(true);
		tableLayout.setShrinkAllColumns(true);

		while (iterator.hasNext())
		{
			// 行的样式
			TableRow.LayoutParams params = new TableRow.LayoutParams(
							ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.MATCH_PARENT);
			if (flag)// 首先显示表格的标题栏,内容自己定义
			{
				TableRow titleRow = new TableRow(this);
				for (int i = 0; i < colums; i++)// 列数
				{// 列名
					params.setMargins(1, 1, 1, 1);
					TextView textView = new TextView(this);
					textView
							.setBackgroundColor(getResources().getColor(R.color.top));
					textView.setTextColor(Color.WHITE);
					textView.setTextSize(31);
					textView.setLayoutParams(params);
					textView.setText(columsName);// 列名
					textView.setTextSize(30);
					textView.setGravity(Gravity.CENTER_HORIZONTAL);
					titleRow.addView(textView);// 把控件添加到行TableRow中
				}
				flag = false;
				tableLayout.addView(titleRow);// 把行添加到TableLayout中
			}

			// 新建一行,显示每个成员的具体信息
			TableRow personRow = new TableRow(this);
			for (int i = 0; i < lines; i++)
			{
				params.setMargins(1, 1, 1, 1);
				object; // 我在这里用Object代表表格显示的内容,
						// Object可以是字符串、数字,也可以是照片,看你具体的定义
				if (object instanceof String)
				{// 字符串居中显示
					TextView textView = new TextView(this);
					textView.setLayoutParams(params);
					textView.setTextSize(29);
					if (colorChange % 2 == 1)
						textView.setBackgroundColor(getResources().getColor(
								R.color.second));
					else
						textView.setBackgroundColor(getResources().getColor(
								R.color.third));
					textView.setText(object.toString());
					textView.setTextSize(30);
					textView.setGravity(Gravity.CENTER);
					personRow.addView(textView);
				}

				else if (object instanceof Number)
				{// 数字居右显示
					TextView textView = new TextView(this);
					textView.setPadding(0, 0, 5, 0);// 右内边距
					textView.setLayoutParams(params);
					textView.setText(object.toString());
					textView.setTextSize(30);
					textView.setTextSize(29);
					if (colorChange % 2 == 1)
						textView.setBackgroundColor(getResources().getColor(
								R.color.second));
					else
						textView.setBackgroundColor(getResources().getColor(
								R.color.third));
					textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.RIGHT);
					personRow.addView(textView);
				}

				else if (object instanceof byte[])
				{// 显示头像
					TableRow.LayoutParams params2 = new TableRow.LayoutParams(60, 75);
					ImageView imageView = new ImageView(this);
					if (colorChange % 2 == 1)
						imageView.setBackgroundColor(getResources().getColor(
								R.color.second));
					else
						imageView.setBackgroundColor(getResources().getColor(
								R.color.third));
					Bitmap bitmap = BitmapFactory.decodeByteArray((byte[]) object,
							0, ((byte[]) object).length);
					imageView.setImageBitmap(bitmap);
					imageView.setLayoutParams(params2);
					personRow.addView(imageView);
				}

				else
				{// 空值
					TextView textView = new TextView(this);
					textView.setLayoutParams(params);
					textView.setTextSize(30);
					if (colorChange % 2 == 1)
						textView.setBackgroundColor(getResources().getColor(
								R.color.second));
					else
						textView.setBackgroundColor(getResources().getColor(
								R.color.third));
					personRow.addView(textView);
				}
			}
			colorChange++;
			tableLayout.addView(personRow);
		}
	}

    
    
   
   

还可以对整个布局、整行或某个空间添加监听事件,只需setId(int id),然后在设立监听器即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值