android动态生成表格,使用的是TABLELAYOUT

2024-05-16 10:48

本文主要是介绍android动态生成表格,使用的是TABLELAYOUT,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


android动态生成表格,使用的是TABLELAYOUT


android layout button tools table class

使用tablelayout及tablerow生成表格,这里我只生成了一次,可以根据需求更改哦....,对于里面的控件是可以监听的....

mainactivity代码如下:

[html]  view plain copy print ?
  1. package com.xy.tablerow;  
  2.   
  3. import android.os.Bundle;  
  4. import android.app.Activity;  
  5. import android.graphics.Color;  
  6. import android.view.Menu;  
  7. import android.view.MenuItem;  
  8. import android.view.View;  
  9. import android.view.View.OnClickListener;  
  10. import android.view.ViewGroup.LayoutParams;  
  11. import android.widget.Button;  
  12. import android.widget.EditText;  
  13. import android.widget.ImageView;  
  14. import android.widget.TableLayout;  
  15. import android.widget.TableRow;  
  16. import android.widget.TextView;  
  17. import android.widget.Toast;  
  18. import android.support.v4.app.NavUtils;  
  19.   
  20. public class MainActivity extends Activity implements OnClickListener {  
  21.     Button bu;  
  22.   
  23.     boolean mFlag = false;  
  24.   
  25.     @Override  
  26.     public void onCreate(Bundle savedInstanceState) {  
  27.         super.onCreate(savedInstanceState);  
  28.         setContentView(R.layout.activity_main);  
  29.   
  30.         Button mButton = (Button) findViewById(R.id.myButton);  
  31.         mButton.setOnClickListener(this);  
  32.         bu = new Button(MainActivity.this);  
  33.         bu.setText("tianjia");  
  34.         bu.setId(0x10);  
  35.         bu.setOnClickListener(this);  
  36.     }  
  37.   
  38.     public void addWegit() {  
  39.         TableLayout table = (TableLayout) findViewById(R.id.tablelayout);  
  40.         table.setStretchAllColumns(true);  
  41.         for (int i = 0; i < 6; i++) {  
  42.             TableRow tablerow = new TableRow(MainActivity.this);  
  43.             tablerow.setBackgroundColor(Color.rgb(222, 220, 210));  
  44.             for (int j = 0; j < 3; j++) {  
  45.   
  46.                 if (i == 0 && j == 0) {  
  47.   
  48.                     tablerow.addView(bu);  
  49.                 } else {  
  50.                     EditText testview = new EditText(MainActivity.this);  
  51.                     testview.setBackgroundResource(R.drawable.shape);  
  52.                     // testview.setText("选择");  
  53.                     tablerow.addView(testview);  
  54.                 }  
  55.   
  56.             }  
  57.             table.addView(tablerow, new TableLayout.LayoutParams(  
  58.                     LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));  
  59.         }  
  60.     }  
  61.   
  62.     @Override  
  63.     public void onClick(View v) {  
  64.   
  65.         int vv = v.getId();  
  66.         switch (vv) {  
  67.         case 0x10:  
  68.             Toast.makeText(MainActivity.this, "heh,keyidianjide",  
  69.                     Toast.LENGTH_SHORT).show();  
  70.             break;  
  71.         case R.id.myButton:  
  72.             if (!mFlag) {  
  73.                 addWegit();  
  74.                 mFlag = !mFlag;  
  75.             }  
  76.   
  77.             break;  
  78.         }  
  79.   
  80.     }  
  81. }  

xml布局如下:

[html]  view plain copy print ?
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <Button  
  8.         android:id="@+id/myButton"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:text="动态生成表格" />  
  12.   
  13.     <TableLayout  
  14.         android:layout_width="wrap_content"  
  15.         android:layout_height="wrap_content"  
  16.         android:background="#dedcd2"  
  17.         android:stretchColumns="*" >  
  18.   
  19.         <TableRow  
  20.             android:layout_margin="0.5dip"  
  21.             android:background="#dedcd2" >  
  22.   
  23.             <TextView  
  24.                 android:background="#ffffff"  
  25.                 android:gravity="center"  
  26.                 android:text="年度"  
  27.                 android:textSize="20dip"  
  28.                 android:textStyle="bold" />  
  29.   
  30.             <TextView  
  31.                 android:gravity="center"  
  32.                 android:background="#ffffff"  
  33.                 android:text="本金"  
  34.                 android:textSize="20dip"  
  35.                 android:textStyle="bold" />  
  36.   
  37.             <TextView  
  38.                 android:gravity="center"  
  39.                 android:background="#ffffff"  
  40.                 android:text="利息"  
  41.                 android:textSize="20dip"  
  42.                 android:textStyle="bold" />  
  43.         </TableRow>  
  44.     </TableLayout>  
  45.   
  46.     <TableLayout  
  47.         android:id="@+id/tablelayout"  
  48.         android:layout_width="wrap_content"  
  49.         android:layout_height="wrap_content"  
  50.         android:background="#dedcd2"  
  51.         android:stretchColumns="*" >  
  52.   
  53.         <TableRow  
  54.             android:layout_margin="0.5dip"  
  55.             android:background="#dedcd2" >  
  56.   
  57.             <TextView  
  58.                 android:layout_margin="1dip"  
  59.                 android:background="#ffffff"  
  60.                 android:text=""  
  61.                 android:textSize="20dip"  
  62.                 android:textStyle="bold" />  
  63.   
  64.             <TextView  
  65.                 android:layout_margin="1dip"  
  66.                 android:background="#ffffff"  
  67.                 android:text=""  
  68.                 android:textSize="20dip"  
  69.                 android:textStyle="bold" />  
  70.   
  71.             <TextView  
  72.                 android:layout_margin="1dip"  
  73.                 android:background="#ffffff"  
  74.                 android:text=""  
  75.                 android:textSize="20dip"  
  76.                 android:textStyle="bold" />  
  77.         </TableRow>  
  78.     </TableLayout>  
  79.   
  80. </LinearLayout>  
  81.   
  82. 效果图如下:  


这篇关于android动态生成表格,使用的是TABLELAYOUT的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/994696

相关文章

Java中使用Java Mail实现邮件服务功能示例

《Java中使用JavaMail实现邮件服务功能示例》:本文主要介绍Java中使用JavaMail实现邮件服务功能的相关资料,文章还提供了一个发送邮件的示例代码,包括创建参数类、邮件类和执行结... 目录前言一、历史背景二编程、pom依赖三、API说明(一)Session (会话)(二)Message编程客

C++中使用vector存储并遍历数据的基本步骤

《C++中使用vector存储并遍历数据的基本步骤》C++标准模板库(STL)提供了多种容器类型,包括顺序容器、关联容器、无序关联容器和容器适配器,每种容器都有其特定的用途和特性,:本文主要介绍C... 目录(1)容器及简要描述‌php顺序容器‌‌关联容器‌‌无序关联容器‌(基于哈希表):‌容器适配器‌:(

使用Python实现高效的端口扫描器

《使用Python实现高效的端口扫描器》在网络安全领域,端口扫描是一项基本而重要的技能,通过端口扫描,可以发现目标主机上开放的服务和端口,这对于安全评估、渗透测试等有着不可忽视的作用,本文将介绍如何使... 目录1. 端口扫描的基本原理2. 使用python实现端口扫描2.1 安装必要的库2.2 编写端口扫

使用Python实现操作mongodb详解

《使用Python实现操作mongodb详解》这篇文章主要为大家详细介绍了使用Python实现操作mongodb的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、示例二、常用指令三、遇到的问题一、示例from pymongo import MongoClientf

SQL Server使用SELECT INTO实现表备份的代码示例

《SQLServer使用SELECTINTO实现表备份的代码示例》在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误,在SQLServer中,可以使用SELECTINT... 在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误。在 SQL Server 中,可以使用 SE

使用Python合并 Excel单元格指定行列或单元格范围

《使用Python合并Excel单元格指定行列或单元格范围》合并Excel单元格是Excel数据处理和表格设计中的一项常用操作,本文将介绍如何通过Python合并Excel中的指定行列或单... 目录python Excel库安装Python合并Excel 中的指定行Python合并Excel 中的指定列P

浅析Rust多线程中如何安全的使用变量

《浅析Rust多线程中如何安全的使用变量》这篇文章主要为大家详细介绍了Rust如何在线程的闭包中安全的使用变量,包括共享变量和修改变量,文中的示例代码讲解详细,有需要的小伙伴可以参考下... 目录1. 向线程传递变量2. 多线程共享变量引用3. 多线程中修改变量4. 总结在Rust语言中,一个既引人入胜又可

golang1.23版本之前 Timer Reset方法无法正确使用

《golang1.23版本之前TimerReset方法无法正确使用》在Go1.23之前,使用`time.Reset`函数时需要先调用`Stop`并明确从timer的channel中抽取出东西,以避... 目录golang1.23 之前 Reset ​到底有什么问题golang1.23 之前到底应该如何正确的

SpringBoot实现动态插拔的AOP的完整案例

《SpringBoot实现动态插拔的AOP的完整案例》在现代软件开发中,面向切面编程(AOP)是一种非常重要的技术,能够有效实现日志记录、安全控制、性能监控等横切关注点的分离,在传统的AOP实现中,切... 目录引言一、AOP 概述1.1 什么是 AOP1.2 AOP 的典型应用场景1.3 为什么需要动态插

详解Vue如何使用xlsx库导出Excel文件

《详解Vue如何使用xlsx库导出Excel文件》第三方库xlsx提供了强大的功能来处理Excel文件,它可以简化导出Excel文件这个过程,本文将为大家详细介绍一下它的具体使用,需要的小伙伴可以了解... 目录1. 安装依赖2. 创建vue组件3. 解释代码在Vue.js项目中导出Excel文件,使用第三