gpt4 book ai didi

java - notifyDataSetChanged();未找到源异常

转载 作者:行者123 更新时间:2023-11-30 04:42:30 26 4
gpt4 key购买 nike

我在 windows 7 64bit 下使用 android 1.6当我从扩展 BaseAdapter 的适配器对象调用 notifyDataSetChanged() 时,我得到了运行时异常

我尝试使用 Eclipse 调试器并发现主要 Activity 试图调用此方法 ZygoteInit$MethodAndArgsCaller.run() line: 842 但是当它调用它时,出现找不到源的异常。

所以,如果有任何与我有关的事情,我将不胜感激

and here is the code




public class ViewTaskActivity extends ListActivity
{
private Button addButton;
private TaskManagerApplication app;
private TaskListadapter adapter;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setUpViews();

app =(TaskManagerApplication)getApplication();
adapter = new TaskListadapter(app.getCurrentTasks(),this);
setListAdapter(adapter);
}

@Override
protected void onResume() {
super.onResume();
adapter.notifyDataSetChanged();;
}

private void setUpViews() {
addButton = (Button)findViewById(R.id.add_button);
addButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(ViewTaskActivity.this , AddTaskActivity2.class);
startActivity(intent);
}
});

}
}

最佳答案

仔细看日志。它在 Task.java 的第 25 行中命中了一个空指针。检查您的代码或将其张贴在这里

关于java - notifyDataSetChanged();未找到源异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5713053/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com