java arrayadapter_简单好用的Adapter---ArrayAdapter详解

拖延症最可怕的地方就是:就算自己这边没有拖延,但对方也会拖延,进而导致自己这边也开始拖延起来!现在这个项目我这边已经是完工了,但是对方迟迟没有搞定,导致整个项目无法提交。

这就是拖延症的可怕:我们不仅是与自己的拖延症作战,而是与所有有关人士的拖延症作战,决定项目是否能够提交,在于那个最慢的人。

既然决定权已经不在我的手上,那么我也可以做做其他事情,像是现在这样写写博客。

这次就介绍一下ListView中比较简单但又非常方便的ArrayAdapter。

ArrayAdapter是BaseAdapter的派生类,在BaseAdapter的基础上,添加了一项重大的功能:可以直接使用泛型构造。

我们先来看一个简单的例子:

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

ListView listView = (ListView) this.findViewById(R.id.list);

UserAdapter adapter = new UserAdapter(this, R.layout.list_item);

adapter.add(new User(10, "小智", "男"));

adapter.add(new User(10, "小霞", "女"));

listView.setAdapter(adapter);

}

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.main, menu);

return true;

}

class UserAdapter extends ArrayAdapter {

private int mResourceId;

public UserAdapter(Context context, int textViewResourceId) {

super(context, textViewResourceId);

this.mResourceId = textViewResourceId;

}

@Override

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

User user = getItem(position);

LayoutInflater inflater = getLayoutInflater();

View view = inflater.inflate(mResourceId, null);

TextView nameText = (TextView) view.findViewById(R.id.name);

TextView ageText = (TextView) view.findViewById(R.id.age);

TextView sexText = (TextView) view.findViewById(R.id.sex);

nameText.setText(user.getName());

ageText.setText(user.getAge());

sexText.setText(user.getSex());

return view;

}

}

class User {

private int mAge;

private String mName;

private String mSex;

public User(int age, String name, String sex) {

this.mAge = age;

this.mName = name;

this.mSex = sex;

}

public String getName() {

return this.mName;

}

public String getAge() {

return this.mAge + "";

}

public String getSex() {

return this.mSex;

}

}

这里自定义了一个ArrayAdapter,有关于Adapter的使用在之前的SimpleAdapter中已经涉及到了,所以这里直接就是以自定义的ArrayAdapter作为例子。

我们这里需要将学生的信息罗列出来,需要三个TextView:

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical" >

android:id="@+id/name"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/age"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/sex"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

3d6dba6402d07c83700cb6a94105168e.png

在自定义ArrayAdapter的时候,最神奇的地方就是我们可以指定ArrayAdapter绑定的数据类型,可以是基本数据类型,也可以是自定义的对象类型,像是这次的User类型。对于自定义的ArrayAdapter的构造方法,存在很多形式,这次是传进一个View的资源Id,但是我们也可以指定绑定的数据类型。

ArrayAdapter的神奇之处就是我们竟然可以像是操作Array一样来操作ArrayAdapter!像是例子中的添加操作,而其他的适配器都是需要传进一个容器的。ArrayAdapter为什么可以处理对象类型的数据呢?其实,ArrayAdapter是使用数组中对象的toString()方法来填充指定的TextView,所以我们可以通过重写对象的toString()方法来自定义ListView的显示。

@Override

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

User user = getItem(position);

LayoutInflater inflater = getLayoutInflater();

View view = inflater.inflate(mResourceId, null);

TextView text = (TextView) view.findViewById(R.id.info);

text.setText(user.toString());

return view;

}

class User {

private int mAge;

private String mName;

private String mSex;

public User(int age, String name, String sex) {

this.mAge = age;

this.mName = name;

this.mSex = sex;

}

@Override

public String toString() {

return "姓名:" + mName + " " + "年龄:" + mAge + " " + "性别:" + mSex;

}

}

这样我们可以只在一行中显示所有数据。

907282d8cff430b7169aca5bf846c5e8.png

使用ArrayAdapter最大的疑问就是我们是否需要将一个现成的容器传入ArrayAdapter中?原本ArrayAdapter本身就用一般容器的基本操作,像是添加新的元素等,但它本身并不能完成当成容器使用,我们更多的时候是要将一个容器中的元素交给ArrayAdapter,由后者决定它的显示形式。

class UserAdapter extends ArrayAdapter {

private int mResourceId;

public UserAdapter(Context context, int textViewResourceId,

List users) {

super(context, textViewResourceId, users);

this.mResourceId = textViewResourceId;

}

@Override

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

User user = getItem(position);

LayoutInflater inflater = getLayoutInflater();

View view = inflater.inflate(mResourceId, null);

TextView text = (TextView) view.findViewById(R.id.info);

text.setText(user.toString());

return view;

}

}

List users = new ArrayList();

users.add(new User(10, "小智", "男"));

users.add(new User(10, "小霞", "女"));

UserAdapter adapter = new UserAdapter(this, R.layout.list_item, users);

listView.setAdapter(adapter);

如果我们将ArrayAdapter绑定的数据类型定义为Object,我们可以自由的传入任何类型的容器而不需要任何有关类型转换的操作!

ArrayAdapter不仅仅是可以显示TextView,它当让也像是其他Adapter一样,可以显示任何其他非TextView的组件:

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

ListView listView = (ListView) this.findViewById(R.id.list);

List users = new ArrayList();

users.add(10);

users.add(11);

UserAdapter adapter = new UserAdapter(this, R.layout.list_item,

R.id.info, users);

listView.setAdapter(adapter);

}

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.main, menu);

return true;

}

class UserAdapter extends ArrayAdapter {

private int mResourceId;

public UserAdapter(Context context, int resourceId,

int textViewResourceId, List users) {

super(context, resourceId, textViewResourceId, users);

this.mResourceId = resourceId;

}

@Override

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

Object user = getItem(position);

LayoutInflater inflater = getLayoutInflater();

View view = inflater.inflate(mResourceId, null);

TextView text = (TextView) view.findViewById(R.id.info);

text.setText(user.toString());

return view;

}

}

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical" >

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="点击" />

android:id="@+id/info"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

1acd9115f7a5213ef12295d2159a2959.png

如果我们的布局中需要其他组件,必须指定该布局中用于显示ArrayAdapter中数据的TextView的Id。

如果只是方便绑定数据的话,其实是没有必要专门独立个ArrayAdapter出来,只要覆写getView()就可以,正如使用容器就是为了方便大量数据的处理一样的道理,使用ArrayAdapter也是为了处理数据较大的情况,像是超过100条或者频繁动态增删数据时,就可以使用ArrayAdapter,而且,为了方便我们刷新UI,ArrayAdapter也提供了setNotifyOnChange()方法,这样可以降低UI的处理量,使得刷新UI更加快速,主要是通过停止对add,insert,remove和clear的操作来实现这点。

总结

以上就是本文关于简单好用的Adapter---ArrayAdapter详解的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:python好玩的项目—色情图片识别代码分享、Python实现一个简单的验证码程序、Python生成数字图片代码分享等,有什么问题可以随时留言,陪伴是最长情的告白,感谢大家一直以来对本站的支持!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值