说说如何用ListView实现自适应的表格。GridView比ListView更容易实现自适应的表格,但是GridView每个格单元的大小固定,而ListView实现的表格可以自定义每个格单元的大小,但因此实现自适应表格也会复杂些(格单元大小不一)。另外,GridView实现的表格可以定位在具体某个格单元,而ListView实现的表格则只能定位在表格行。因此还是那句老话:根据具体的使用环境而选择GridView 或者 ListView实现表格。
本文实现的ListView表格,可以每个格单元大小不一,文本(TextView)或图片(ImageView)做格单元的数据,不需要预先定义XML实现样式(自适应的根本目标)。由于ListView置于HorizontalScrollView中,因此对于列比较多/列数据比较长的数据表也能很好地适应其宽度。main.xml源码如下:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <HorizontalScrollView android:id="@+id/HorizontalScrollView01" android:layout_height="fill_parent" android:layout_width="fill_parent"> <ListView android:id="@+id/ListView01" android:layout_height="wrap_content" android:layout_width="wrap_content"></ListView> </HorizontalScrollView> </LinearLayout> 主类testMyListView.java的源码如下: package com.testMyListView; import java.util.ArrayList; import com.testMyListView.TableAdapter.TableCell; import com.testMyListView.TableAdapter.TableRow; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ListView; import android.widget.LinearLayout.LayoutParams; import android.widget.Toast; /** * @author hellogv */ public class testMyListView extends Activity { /** Called when the activity is first created. */ ListView lv; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); this.setTitle("ListView自适应实现表格---hellogv"); lv = (ListView) this.findViewById(R.id.ListView01); ArrayList table = new ArrayList (); TableCell[] titles = new TableCell[5];// 每行5个单元 int width = this.getWindowManager().getDefaultDisplay().getWidth()/titles.length; // 定义标题 for (int i = 0; i < titles.length; i++) { titles[i] = new TableCell("标题" + String.valueOf(i), width + 8 * i, LayoutParams.FILL_PARENT, TableCell.STRING); } table.add(new TableRow(titles)); // 每行的数据 TableCell[] cells = new TableCell[5];// 每行5个单元 for (int i = 0; i < cells.length - 1; i++) { cells[i] = new TableCell("No." + String.valueOf(i), titles[i].width, LayoutParams.FILL_PARENT, TableCell.STRING); } cells[cells.length - 1] = new TableCell(R.drawable.icon, titles[cells.length - 1].width, LayoutParams.WRAP_CONTENT, TableCell.IMAGE); // 把表格的行添加到表格 for (int i = 0; i < 12; i++) table.add(new TableRow(cells)); TableAdapter tableAdapter = new TableAdapter(this, table); lv.setAdapter(tableAdapter); lv.setOnItemClickListener(new ItemClickEvent()); } class ItemClickEvent implements AdapterView.OnItemClickListener { @Override public void onItemClick(AdapterView arg0, View arg1, int arg2, long arg3) { Toast.makeText(testMyListView.this, "选中第"+String.valueOf(arg2)+"行", 500).show(); } } } ListView自适应实现Table的类TableAdapter.java代码如下:PS:TableCell是格单元的类,TableRow是表格行的类,TableRowView是实现表格行的组件。实现步骤:TableCell --> TableRow(TableRowView)-->ListView package com.testMyListView; import java.util.List; import android.content.Context; import android.graphics.Color; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; public class TableAdapter extends BaseAdapter { private Context context; private List table; public TableAdapter(Context context, List table) { this.context = context; this.table = table; } @Override public int getCount() { return table.size(); } @Override public long getItemId(int position) { return position; } public TableRow getItem(int position) { return table.get(position); } public View getView(int position, View convertView, ViewGroup parent) { TableRow tableRow = table.get(position); return new TableRowView(this.context, tableRow); } /** * TableRowView 实现表格行的样式 * @author hellogv */ class TableRowView extends LinearLayout { public TableRowView(Context context, TableRow tableRow) { super(context); this.setOrientation(LinearLayout.HORIZONTAL); for (int i = 0; i < tableRow.getSize(); i++) {//逐个格单元添加到行 TableCell tableCell = tableRow.getCellValue(i); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( tableCell.width, tableCell.height);//按照格单元指定的大小设置空间 layoutParams.setMargins(0, 0, 1, 1);//预留空隙制造边框 if (tableCell.type == TableCell.STRING) {//如果格单元是文本内容 TextView textCell = new TextView(context); textCell.setLines(1); textCell.setGravity(Gravity.CENTER); textCell.setBackgroundColor(Color.BLACK);//背景黑色 textCell.setText(String.valueOf(tableCell.value)); addView(textCell, layoutParams); } else if (tableCell.type == TableCell.IMAGE) {//如果格单元是图像内容 ImageView imgCell = new ImageView(context); imgCell.setBackgroundColor(Color.BLACK);//背景黑色 imgCell.setImageResource((Integer) tableCell.value); addView(imgCell, layoutParams); } } this.setBackgroundColor(Color.WHITE);//背景白色,利用空隙来实现边框 } } /** * TableRow 实现表格的行 * @author hellogv */ static public class TableRow { private TableCell[] cell; public TableRow(TableCell[] cell) { this.cell = cell; } public int getSize() { return cell.length; } public TableCell getCellValue(int index) { if (index >= cell.length) return null; return cell[index]; } } /** * TableCell 实现表格的格单元 * @author hellogv */ static public class TableCell { static public final int STRING = 0; static public final int IMAGE = 1; public Object value; public int width; public int height; private int type; public TableCell(Object value, int width, int height, int type) { this.value = value; this.width = width; this.height = height; this.type = type; } } }
效果图如不能正常观看,请点击图片。
相关推荐
本项目“ListView自适应实现表格”旨在教你如何利用ListView创建出类似表格的效果,使数据以行和列的形式展示。下面将详细介绍这个知识点及其相关实现。 1. **自定义Adapter**: - 在实现ListView的表格效果时,...
首先,我们看到描述中提到,与GridView相比,ListView更灵活,因为它的单元格大小可以自定义,但这也意味着实现自适应表格会更加复杂。GridView由于每个单元格大小固定,适合呈现结构化的表格,而ListView更适合需要...
GridView比ListView更容易实现自适应的表格,但是GridView每个格单元的大小固定,而ListView实现的表格可以自定义每个格单元的大小,但因此实现自适应表格也会复杂些(主要由于格单元大小不一)。此外,GridView实现的...
当需要展示的数据具有表格形式时,尽管Android没有内置的Table控件,但我们可以巧妙地利用ListView来模拟实现表格的效果。本教程将深入探讨如何在Android中使用ListView来构建表格。 首先,我们需要了解ListView的...
标题"Android ListView 固定列头源码"提示我们将讨论如何在ListView中实现这样的功能。 在Android中,实现ListView固定列头的一种常见方法是使用自定义适配器和布局管理器。一种常见的实现方式是创建两个ListView:...
以下是如何在Android中使用ListView实现漂亮的表格效果的详细步骤: 首先,我们需要定义颜色资源以区分不同的视觉效果。在`res/values/color.xml`文件中,定义了不同颜色的值,如深灰色、黑色、绿色和红色。绿色...
然而,当涉及到复杂的表格布局,例如需要锁住表头、自适应列宽以及快速集成等特性时,普通的ListView可能无法满足需求。这时,我们可以借助自定义视图来实现更高级的功能。"Node.js-LockTableViewAndroid"就是这样一...
在处理"listview显示表格左右上下滑动"的需求时,我们通常会遇到如何实现一个类似Excel表格的效果,即顶部标题和最左边一列固定,而其他部分可以进行上下左右的滑动。这个功能在很多应用中都有应用,比如数据报表、...
- Android原生提供了两种基本的表格组件:`ListView`和`GridView`。然而,它们并不完全满足所有表格布局的需求,比如行和列的动态调整、复杂单元格样式等,因此开发者常常需要自定义`TableView`来实现更复杂的布局...
在Android中,`TableLayout`是一个专为创建表格设计的布局,但有时使用`ListView`配合`Layout_weight`能更有效地实现类似的效果,尤其是在处理大量数据时。这是因为`ListView`可以动态加载视图,提高性能和用户体验...
总之,TableLayout和TableRow是Android开发中构建表格样式的布局工具,通过设置不同的属性和在代码中进行动态操作,可以实现类似Excel表格的各种布局效果。在实际开发中,要根据具体需求和性能考虑选择合适的布局...
这篇文档主要探讨了如何在Android上实现一个支持分页和表格展示的SQLite数据控件,以提高用户体验和性能。 首先,文章指出传统的SQLite数据读取方式通常是通过简单的文本框显示数据,而本次讲解的是如何构建一个更...
12. **ListView自适应实现表格**: - ListView 结合自定义Adapter 可以实现复杂的列表布局,如表格形式,通过复用convertView,提高性能。 13. **NDK**: - NDK(Native Development Kit)允许开发者使用C/C++...
从第十一篇开始,文档转向了更为高级的功能和技术探讨,包括模拟信号示波器、蓝牙传感应用、蓝牙隐藏API、TelephonyManager的深度使用、ListView自适应实现表格以及使用NDK进行图像处理等。这些内容涵盖了从硬件交互...
在Android移动应用开发中,TableLayout是一种非常实用的布局方式,它允许开发者以表格的形式组织UI元素。TableLayout由多行TableRow组成,每行可以包含一个或多个View或ViewGroup。下面将详细介绍TableLayout的常用...
`fmx-listview`是FireMonkey (FMX) 框架的一部分,适用于跨平台应用程序开发,支持Windows、macOS、iOS和Android等操作系统。 首先,我们要理解`fmx-listview`的基本概念。`TListView`是FireMonkey中用于显示可滚动...
本文将深入讲解如何在Android上实现一个支持分页和表格形式展示数据的SQLite控件。 首先,我们需要理解SQLite的基本操作,包括创建数据库、创建表、插入数据、查询数据以及更新和删除数据。在Android中,我们通常...
本文将深入探讨如何在Android上实现SQLite数据库的分页表格显示,这不仅有助于优化用户体验,还能有效地减少内存消耗。 首先,我们要了解SQLite的基础知识。SQLite是一个嵌入式关系型数据库,它支持SQL语法,提供...