我有一个列表视图,我想从对话框中编辑它。我从谷歌搜索中读到我需要在listview上发送notifyDataSetChanged(),但是当我尝试这样做时,我收到一个错误:
The method notifyDataSetChanged(View) is undefined for the type ListView
我的listview最初设置在我的代码顶部,只有:
ListView listView;
然后在onload
中设置例程public void loadItems(){
//Removed - just getting the data
int rowCount;
rowCount = mCategory.size();
listView = (ListView) findViewById(R.id.lvItems);
int[] colors = {0, 0xFFFF0000, 0};
listView.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
listView.setDividerHeight(1);
listView.setAdapter(new CustomAdapter());
listView.setClickable(true);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3) {
loadPopup(mDescription.get(position).toString(), mCountList.get(position).toString(), mTemplatecode.get(position).toString());
}
});
//Removed - Tidying up
}
onlick上加载的对话框有一个简单的界面,一个减号按钮,一个加号按钮,一个文本框和一个转到按钮。文本框中的数字已更改,它将执行db调用。当对话框关闭时,我希望它刷新后面的列表视图以反映新的更改。即基本上重新运行loadItems()例程。
当您单击对话框上的“转到”按钮时会发生这种情况。我显然把notifyDataSetChanged放在错误的地方,因为它甚至都不会运行。
btnGo.setOnClickListener( new View.OnClickListener(){
@Override
public void onClick(View v) {
addAsset(v, AssetDesc, txt.getText().toString(), templateCode);
listView.notifyDataSetChanged();
loadItems();
dialog.dismiss();
}
});
自定义适配器:
class CustomAdapter extends BaseAdapter
{
@Override
public int getCount() {
return mDescription.size();
}
@Override
public Object getItem(int arg0) {
return null;
}
@Override
public long getItemId(int arg0) {
return 0;
}
@Override
public View getView(int arg0, View arg1, ViewGroup arg2) {
LayoutInflater inf=getLayoutInflater();
View v=inf.inflate(R.layout.noncriticalasset, arg2,false);
TextView tv=(TextView)v.findViewById(R.id.txtOption);
TextView tvCount=(TextView)v.findViewById(R.id.txtCount);
tv.setText(mDescription.get(arg0).toString());
tvCount.setText(mCountList.get(arg0).toString());
return v;
}
}
答案 0 :(得分:6)
您需要在适配器上调用notifyDataSetChanged
,而不是ListView本身。