Android使用代码动态生成界面

 更新时间:2021年09月18日 11:20:10   作者:阿牛哞了一声  
这篇文章主要为大家详细介绍了Android使用代码动态生成界面,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

我们最常用使用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),然后在设立监听器即可。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • android轮播图组件的制作方法

    android轮播图组件的制作方法

    这篇文章主要为大家详细介绍了android轮播图组件的制作方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-08-08
  • Android原生项目集成React Native的方法

    Android原生项目集成React Native的方法

    本篇文章主要介绍了Android原生项目集成React Native的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-11-11
  • Android实现GridView中的item自由拖动效果

    Android实现GridView中的item自由拖动效果

    在前一个项目中,实现了一个功能是gridview中的item自由拖到效果,实现思路很简单,主要工作就是交换节点,以及拖动时的移动效果,下面小编给大家分享具体实现过程,对gridview实现拖拽效果感兴趣的朋友一起看看吧
    2016-11-11
  • Android微信SDK实现分享

    Android微信SDK实现分享

    这篇文章主要介绍了Android微信SDK实现分享的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-12-12
  • Android实现搜索保存历史记录功能

    Android实现搜索保存历史记录功能

    这篇文章主要介绍了Android实现搜索保存历史记录功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-05-05
  • Android实现简单的照相功能

    Android实现简单的照相功能

    这篇文章主要为大家详细介绍了Android实现简单的照相功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03
  • Android Studio连接手机设备教程

    Android Studio连接手机设备教程

    这篇文章主要为大家详细介绍了Android Studio连接手机设备教程,非常完整的连接步骤,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-07-07
  • Android应用开发中Fragment存储功能的基本用法

    Android应用开发中Fragment存储功能的基本用法

    这篇文章主要介绍了Android应用开发中使用Fragment存储功能的基本用法,包括对Fragment的非中断保存setRetaineInstance的讲解,需要的朋友可以参考下
    2016-02-02
  • Android编程之绘制文本(FontMetrics)实现方法

    Android编程之绘制文本(FontMetrics)实现方法

    这篇文章主要介绍了Android编程之绘制文本(FontMetrics)实现方法,结合实例形式较为详细的分析了Android使用FontMetrics对象绘制文本的相关技巧,需要的朋友可以参考下
    2015-12-12
  • android APP登陆页面适配的实现

    android APP登陆页面适配的实现

    这篇文章主要介绍了android APP登陆页面适配的实现,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-09-09

最新评论