我有ListView
,可以通过滑动来删除其项目。刷新项目时,会删除其数据库行以及适配器数据集中的对象,并且还会调用notifyDataSetChanged()
。问题是,这些物品的高度不同 - 一个可以是单线,第二个可以有四条线。所以当我在列表中有一些项目时,让我们说:
1.One line
2.两行
3.三条线
4.One line
第二个被删除,第三个被取代(如预期的那样),但被切断为两行。当删除第三个项目时,第四个项目的高度会增加以匹配已删除的项目。
我找到了解决问题的方法,但它可能是错误的 - 即使convertView不为null,它也会创建一个新视图。
我想知道这是否可以通过另一种循环友好的方式实现。
当前适配器代码:
public class CounterItemAdapter extends BaseAdapter{
private Activity activity;
private ArrayList<CounterItem> data;
private SQLiteOpenHelper helper;
private static LayoutInflater inflater = null;
public CounterItemAdapter(Activity activity, ArrayList<CounterItem> data, SQLiteOpenHelper helper) {
this.activity = activity;
this.data = data;
this.helper = helper;
inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
@Override
public int getCount() {
return data.size();
}
@Override
public CounterItem getItem(int position) {
return data.get(position);
}
@Override
public long getItemId(int position) {
return getItem(position).getId();
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
//if(convertView == null)
view = inflater.inflate(R.layout.counter_list_item, null);
TextView nameView = (TextView)view.findViewById(R.id.nameView);
//other, unrelated views were here
final CounterItem counterItem;
counterItem = getItem(position);
nameView.setText(counterItem.getName());
return view;
}
}
答案 0 :(得分:0)
好的,我找到了解决方案。
已添加int lastValidPosition = -1;
在适配器中,然后adapter.lastValidPosition = position-1
在删除回调方法中,adapter.notifyDataSetChanged();
之前
,并且在适配器的getView()
方法中我已经改变了
//if(convertView == null)
view = inflater.inflate(R.layout.counter_list_item, null);
到
if(lastValidPosition < position | convertView == null){
view = inflater.inflate(R.layout.counter_list_item, null);
lastValidPosition = position;
}
它完美无缺。