我的Application类中有一个项目列表:
public class MyApp extends Application {
private static ArrayList<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();
//GET AND SET
}
我想在ListView中使用它。 我有一个按钮在MyApp列表中添加一个元素:
public void addBase(View view){
MyApp.add2List(....); //add to MyApp.list
adapter.notifyDataSetChanged();
}
在同一个活动中,我设置了ListView:
list=(ListView)findViewById(R.id.list_view);
adapter=new MyListAdapter(this, R.layout.list_item, Session.getList());
list.setAdapter(adapter);
这是我的适配器:
public class MyListAdapter extends ArrayAdapter<HashMap<String, String>> {
private Context _context;
private Activity activity;
private ArrayList<HashMap<String, String>> data;
private static LayoutInflater inflater=null;
public MyListAdapter(Context context, int resourceId, ArrayList<HashMap<String, String>> items) {
super(context, resourceId, items);
this.data = items;
_context = context;
activity = ((Activity)context);
inflater = activity.getLayoutInflater();
}
public View getView(final int position, View convertView, ViewGroup parent) {
View vi=convertView;
final ArrayList<HashMap<String, String>> list = Session.getList();
if(convertView==null){
vi = inflater.inflate(R.layout.list_item, null);
ImageButton delete = (ImageButton)vi.findViewById(R.id.delete_item);
delete.setOnClickListener(new Button.OnClickListener() {
@Override
public void onClick(View v) {
list.remove(position);
notifyDataSetChanged();
}
});
}
return vi;
}
我使用了 notifyDataSetChanged()方法,但它不起作用!!没有列表视图的更新。
如果尝试再次创建适配器,则添加按钮起作用。
adapter=new MyListAdapter(this, R.layout.list_item, Session.getList());
list.setAdapter(adapter);
如何为删除按钮执行此操作?
为什么notifyDataSetChanged()方法不起作用?
答案 0 :(得分:1)
不要重新创建要传递给适配器的ArrayList或Array对象,只需再次修改相同的ArrayList或Array。并且在修改适配器后数组或arrylist大小没有改变时,那么notifydatasetchange将不起作用。
在镜头中,只有当阵列或arraylist大小增加或减少时才有效。
答案 1 :(得分:0)
我解决了每次适配器时重新创建的问题。
不是很好的解决方案,但它是我发现的唯一解决方案。
答案 2 :(得分:-1)
试试这个
Adapter.clear()
for (HashMap <String,String> object : Session.getList())
Adapter.add(object)