当前位置:  编程技术>移动开发

Android提高之ListView实现自适应表格的方法

    来源: 互联网  发布时间:2014-10-25

    本文导语:  前面有文章介绍了使用GridView实现表格的方法,本文就来说说如何用ListView实现自适应的表格。GridView比ListView更容易实现自适应的表格,但是GridView每个格单元的大小固定,而ListView实现的表格可以自定义每个格单元的大小,但...

前面有文章介绍了使用GridView实现表格的方法,本文就来说说如何用ListView实现自适应的表格。GridView比ListView更容易实现自适应的表格,但是GridView每个格单元的大小固定,而ListView实现的表格可以自定义每个格单元的大小,但因此实现自适应表格也会复杂些(主要由于格单元大小不一)。此外,GridView实现的表格可以定位在具体某个格单元,而ListView实现的表格则只能定位在表格行。因此还是那句老话:根据具体的使用环境而选择GridView 或者 ListView实现表格。

先来看看本文程序运行的效果图,如下图所示:

本文实现的ListView表格,可以每个格单元大小不一,文本(TextView)或图片(ImageView)做格单元的数据,不需要预先定义XML实现样式(自适应的根本目标)。由于ListView置于HorizontalScrollView中,因此对于列比较多/列数据比较长的数据表也能很好地适应其宽度。

main.xml源码如下:



 
 
 


主类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代码如下:

此处需要注意: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;
 }
 }
}

希望本文所述实例能够对大家进行Android项目开发有所帮助。


    
 
 

您可能感兴趣的文章:

  • android表格效果之ListView隔行变色实现代码
  • android Activity线性布局和表格布局实例讲解
  • Android提高之SQLite分页表格实现方法
  • Android自定义表格控件满足人们对视觉的需求
  • Android中使用ListView绘制自定义表格技巧分享
  • Android Horizontal ListView
  • android ListView的右边滚动滑块启用方法 分享
  • android ListView自动滚动方法
  • android listview 水平滚动和垂直滚动的小例子
  • 滑动刷新的ListView Android PullToRefresh
  • android中如果为listview的item添加listener,也能为item中的button添加listener
  • android中ListView多次刷新重复执行getView的解决方法
  • Android笔记之:在ScrollView中嵌套ListView的方法
  • android ListView 一些重要属性详解
  • Android用ListView显示SDCard文件列表的小例子
  • Android入门之ListView应用解析(一)
  • android基础教程之android的listview与edittext冲突解决方法
  • Android ListView 扩展 DragSortListView
  • android开发之横向滚动/竖向滚动的ListView(固定列头)
  • Android入门之ListView应用解析(二)
  • Android之ScrollView嵌套ListView和GridView冲突的解决方法
  • android开发教程之listview显示sqlite数据
  • android开发教程之listview使用方法
  • Android在listview添加checkbox实现原理与代码
  • Android控件ListView用法(读取联系人示例代码)
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Android中让图片自适应控件的大小的方法
  • Android常用命令集锦(图文并茂适应于初学者)
  • Android基础之使用Fragment适应不同屏幕和分辨率(分享)
  • 申请Android Map 的API Key(v2)的最新申请方式(SHA1密钥)
  • Android瀑布流实例 android_waterfall
  • Android开发需要的几点注意事项总结
  • Android系统自带样式 (android:theme)
  • android 4.0 托管进程介绍及优先级和回收机制
  • Android网络共享软件 Android Wifi Tether
  • Android访问与手机通讯相关类的介绍
  • Android 图标库 Android GraphView
  • Android及andriod无线网络Wifi开发的几点注意事项
  • 轻量级Android开发工具 Android Tools
  • Android 2.3 下StrictMode介绍
  • Android 开发环境 Android Studio
  • IDEA的Android开发插件 idea-android
  • Android手机事件提醒 Android Notifier
  • XBMC的Android客户端 android-xbmcremote
  • Android小游戏 Android Shapes
  • Android电池监控 Android Battery Dog
  • android开发:“android:WindowTitle”没有对应项no resource
  • Android 上类似IOS 的开关控件。 Android ToggleButton
  • Android 将 android view 的位置设为右下角的解决方法
  • Android 2D游戏引擎 Android Angle


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3