在android中我有一个自定义适配器,在这个自定义适配器中我创建了一个带有一些文本的视图和一个删除文本的按钮。所有这一切工作正常,我可以从数据库中删除记录,但我无法刷新列表。
列表看起来有点像这样:
------------------------------------
text text text text | Delete Button|
------------------------------------
text text text text | Delete Button|
------------------------------------
我的第一直觉是使用这样的东西:
QCListFragment frag = (QCListFragment) getSupportFragmentManager().findFragmentById(R.id.listFragment);
在什么时候我可以调用list list中的方法来重新查询列表... 但我不能这样做,因为我的适配器不会扩展Fragment。所以我发现很难让片段知道数据已被更改。
无论如何,我最后的想法只是重建活动,但我认为这可能不是最好的事情,必须有一个更好的方法......我确信这是一件简单的事情,我'我失踪了,就像我最后一个问题一样!
(如果有帮助,我可以发布更多代码) 更新: 这是我的整个适配器类
public class CalcCursorAdapter extends SimpleCursorAdapter实现了Filterable {
private Context mContext;
private ListView mListView;
private int mLayout;
private Cursor mcursor;
protected static class ViewHolder {
protected TextView text;
protected ImageButton button;
private int position;
}
@SuppressWarnings("deprecation")
public CalcCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to)
{
super(context, layout, c, from, to);
this.mContext = context;
this.mLayout = layout;
this.mcursor = c;
//mListView = .getListView();
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
TextView summary = (TextView)view.findViewById(R.id.calctvPrice);
TextView savings = (TextView)view.findViewById(R.id.calctvSavings);
summary.setText(cursor.getString(cursor.getColumnIndexOrThrow("qcFinalPrice")));
savings.setText(cursor.getString(cursor.getColumnIndexOrThrow("qcSavings")));
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
ViewHolder holder = new ViewHolder();
LayoutInflater inflater = LayoutInflater.from(context);
View v = inflater.inflate(R.layout.calc_list_item, parent, false);
holder.button = (ImageButton) v.findViewById(R.id.qcbtnDelete);
holder.button.setOnClickListener(deleteButton);
holder.position = cursor.getInt(cursor.getColumnIndexOrThrow("_id"));
bindView(v, context, cursor);
v.setTag(holder);
return v;
}
private OnClickListener deleteButton = new OnClickListener() {
public void onClick(View v){
View view = (View) v.getParent();
ViewHolder holder = (ViewHolder) view.getTag();
int position = holder.position;
DbHelper mDbHelper;
mDbHelper = new DbHelper(mContext);
mDbHelper.open();
mDbHelper.deleteCalc(position);
mDbHelper.close();
String test = Integer.toString(position);
Toast.makeText(mContext.getApplicationContext(), test, Toast.LENGTH_SHORT).show();
notifyDataSetChanged();
}
};
public long qcItemId(int position) {
return position;
}
}
非常感谢任何帮助!
感谢。
答案 0 :(得分:0)
我认为你误解了Adapter和Fragment的概念。您可以在Fragment中将Adapter设置为Fragment或AdapterView。重新查询数据后,调用Adapter.notifyDataSetChanged(),然后将刷新Fragment或AdapterView。
答案 1 :(得分:0)
当你在适配器内时,你可以直接拨打notifyDatasetChanged()
。您不需要适配器对象。我认为你需要刷新OOPS概念。你的适配器扩展了BaseAdapter或ArrayAdapter或SimpleAdapter,它们都有这个方法,你不需要类本身的对象来调用它自己的方法。
修改强>
notifyDataSetChanged()
不适合你,因为你每次都在夸大视图,这在性能方面不是一件好事。看看这个Answer。在onContentChanged()
之后调用notifyDataSetChanged()
。我不确定这对你有什么用。我强烈建议您使用notifyDataSetChanged()
来使事情有效,不要去找工作。