热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

android添加arraylist,Java将ArrayList对象添加到Android中的GridView

您的适配器publicclassBenildus_AdapterextendsArrayAdapter{ArrayListlist;yourpersonarraylistConte

您的适配器

public class Benildus_Adapter extends ArrayAdapter {

ArrayList list; // your person arraylist

Context context; // the activity context

int resource; // this will be your xml file

public Benildus_Adapter(Context context, int resource,ArrayList objects) {

super(context, resource, objects);

// TODO Auto-generated constructor stub

this.list = objects;

this.context = context;

this.resource = resource;

}

@Override

public int getCount() {

// TODO Auto-generated method stub

if(list.size() == 0){

return 0;

}else{

return list.size();

}

}

@Override

public View getView(final int position, View convertView, ViewGroup parent) {

// TODO Auto-generated method stub

View child = convertView;

RecordHolder holder;

LayoutInflater inflater = ((Activity) context).getLayoutInflater(); // inflating your xml layout

if (child == null) {

child = inflater.inflate(resource, parent, false);

holder = new RecordHolder();

holder.fname = (TextView) child.findViewById(R.id.fname); // fname is the reference to a textview

holder.lname = (TextView) child.findViewById(R.id.lname); // in your xml layout file

holder.bio =(TextView) child.findViewById(R.id.bio); // you are inflating.etc

child.setTag(holder);

}else{

holder = (RecordHolder) child.getTag();

}

final Person user = list.get(position); // you can remove the final modifieer.

holder.fname.setText(user.getFName());

holder.lname.setText(user.getLName());

holder.bio.setText(user.getBiography());

holder.image.setImageBitmap(user.getImage()); // if you use string then you download the image using

// the string as url and set it to your imageview..

return child;

}

static class RecordHolder {

TextView fname,lname,bio;

ImageView image;

}

@Override

public void notifyDataSetChanged() { // you can remove this..

// TODO Auto-generated method stub

if(getCount() == 0){

//show layout or something that notifies that no list is in..

}else{

// this is to make sure that you can call notifyDataSetChanged in any place and any thread

new Handler(getContext().getMainLooper()).post(new Runnable() {

@Override

public void run() {

// TODO Auto-generated method stub

Benildus_Adapter.super.notifyDataSetChanged();

}

});

}

}

}

你的人班

public class Person {

private String FName;

private String LName;

private String Biography;

private Bitmap image; // add the image too to your class, you can store the url of the image

// or save it using bitmap.. if you store the url then = String image; the load the image

// in the getview method.. any way you choose..

public String getFName() {

return FName;

}

public void setFName(String fName) {

FName = fName;

}

public String getLName() {

return LName;

}

public void setLName(String lName) {

LName = lName;

}

public String getBiography() {

return Biography;

}

public void setBiography(String biography) {

Biography = biography;

}

public Bitmap getImage() {

return image;

}

public void setImage(Bitmap image) {

this.image = image;

}

}

编辑我只是忘了设置适配器.

gridView = (GridView)findViewById(R.id.grid);

Benildus_Adapter bA = new Benildus_Adapter(this, R.layout.myxml,dbPersons);

gridView.setAdapter(bA);

希望对您有所帮助,让我知道



推荐阅读
  • 深入解析Java枚举及其高级特性
    本文详细介绍了Java枚举的概念、语法、使用规则和应用场景,并探讨了其在实际编程中的高级应用。所有相关内容已收录于GitHub仓库[JavaLearningmanual](https://github.com/Ziphtracks/JavaLearningmanual),欢迎Star并持续关注。 ... [详细]
  • 本文介绍如何使用 Android 的 Canvas 和 View 组件创建一个简单的绘图板应用程序,支持触摸绘画和保存图片功能。 ... [详细]
  • JavaScript 基础语法指南
    本文详细介绍了 JavaScript 的基础语法,包括变量、数据类型、运算符、语句和函数等内容,旨在为初学者提供全面的入门指导。 ... [详细]
  • 本文介绍如何在Spring Boot项目中集成Redis,并通过具体案例展示其配置和使用方法。包括添加依赖、配置连接信息、自定义序列化方式以及实现仓储接口。 ... [详细]
  • 本文探讨了使用C#在SQL Server和Access数据库中批量插入多条数据的性能差异。通过具体代码示例,详细分析了两种数据库的执行效率,并提供了优化建议。 ... [详细]
  • 对象自省自省在计算机编程领域里,是指在运行时判断一个对象的类型和能力。dir能够返回一个列表,列举了一个对象所拥有的属性和方法。my_list[ ... [详细]
  • 反向投影技术主要用于在大型输入图像中定位特定的小型模板图像。通过直方图对比,它能够识别出最匹配的区域或点,从而确定模板图像在输入图像中的位置。 ... [详细]
  • 深入理解Lucene搜索机制
    本文旨在帮助读者全面掌握Lucene搜索的编写步骤、核心API及其应用。通过详细解析Lucene的基本查询和查询解析器的使用方法,结合架构图和代码示例,带领读者深入了解Lucene搜索的工作流程。 ... [详细]
  • 本文介绍了一个SQL Server自定义函数,用于从字符串中提取仅包含数字和小数点的子串。该函数通过循环删除非数字字符来实现,并附带创建测试表、存储过程以演示其应用。 ... [详细]
  • 本文探讨了如何通过预处理器开关选择不同的类实现,并解决在特定情况下遇到的链接器错误。 ... [详细]
  • 本文深入探讨了面向切面编程(AOP)的概念及其在Spring框架中的应用。通过详细解释AOP的核心术语和实现机制,帮助读者理解如何利用AOP提高代码的可维护性和开发效率。 ... [详细]
  • 开发笔记:9.八大排序
    开发笔记:9.八大排序 ... [详细]
  • 采用IKE方式建立IPsec安全隧道
    一、【组网和实验环境】按如上的接口ip先作配置,再作ipsec的相关配置,配置文本见文章最后本文实验采用的交换机是H3C模拟器,下载地址如 ... [详细]
  • 本文详细介绍了如何使用 PHP 接收并处理微信支付的回调结果,确保支付通知能够被正确接收和响应。 ... [详细]
  • 我有一个SpringRestController,它处理API调用的版本1。继承在SpringRestControllerpackagerest.v1;RestCon ... [详细]
author-avatar
二比大哥大
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有