查询网上给出的结果是通过重写 BaseAdapter 中的public int getCount()来实现ListView的显示数量。但是有个问题就是这个getCount()返回的值必须要小于等于你要显示的数据数量,否则就会出现访问一个空项目的错误。
比如当你读取数据库,你的数据库是动态的增加或减少的,那么固定getCount()的值就势必会报错。那么有没有什么办法可以先获取我要显示到ListView上的数据的数量,然后再赋值给getCount(),已实现动态的控制ListView显示的数量。为此我想到下面的这种方法。
以下方法适合于:每次要显示的数据是动态的,或是要固定数量的数据显示到ListView
一般来说,我们需要重写BaseAdapter,如下所示:
import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.LinearLayout;
public class NewAdapter extends BaseAdapter {
private Context context = null;
public NewAdapter(Context context) { this.context = context; }
private int getdata() { /**************
在这里先获取一下你要显示的数据有多少
****************/
//在最后返回一个你要显示数据的数量 return datasize; }
@Override public View getView(int position, View convertView, ViewGroup parent) {
LinearLayout ll = null;
if (convertView != null) { //convertView不为空,就直接赋值 ll = (LinearLayout) convertView; } else { //否则需要初始化 ll = (LinearLayout) LayoutInflater.from(getContext()).inflate( R.layout.list_cell, null); }
//获取List_cell中的各个控件 TextView username = (TextView) ll.findViewById(R.id.tvUsername); TextView score = (TextView) ll.findViewById(R.id.tvScore);
//这个data就是你要显示的数据的一个数组,我们在getdata中要返回的也就是这个数组的大小 username.setText(data[position].username); score.setText(data[position].score);
return ll; }
private Context getContext() { // TODO Auto-generated method stub return context; }
@Override public long getItemId(int position) { // TODO Auto-generated method stub return position; }
@Override public ListCellData getItem(int position) { // TODO Auto-generated method stub return data[position]; }
@Override public int getCount() { // 获取要显示的数据大小 int size = getdata(); if(size > 0) //如果数据大小不为0 return size >= 10 ? 10 : size;//这句话的意思就是这个ListView最多可以显示10个数据 //return size; //表示要显示的数量就是我data中的数据的数量 else //如果数据大小为0,表示不需要显示 return 0; } } 主要思想就是:
1.先获取需要显示的数据的数量
2.让getCount()的返回值收到这个数量的约束
return size >= 10 ? 10 : size;
我这里的这个操作就是说在这个数据的数量小于10之前,那么数据是多少个,ListView就显示多少行;当数据的大小大于10的时候,我们就固定ListView显示的数量是10行。通过这种方式就可以实现对ListView显示行数的动态控制! --------------------- 作者:kabuto_hui 来源: 原文:https://blog.csdn.net/kabuto_hui/article/details/78107202 版权声明:本文为博主原创文章,转载请附上博文链接!