我正在尝试加载listview中从DB查询的项目。 用户界面为空白2秒钟,然后列出所有项目的列表视图。我无法弄清楚代码中的错误部分。 以下是我的代码
DateTimePicker[,30,5,145x23,invalid,layout=org.jdesktop.swingx.plaf.basic.BasicDatePickerUI$Handler,alignmentX=0.0,alignmentY=0.0,border=,flags=320,maximu
}
现在Asynctask加载项目
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_list_view);
// Get ListView object from xml
listView = (ListView) findViewById(R.id.list);
dbHandler = new MemoDBHandler(this, null, null, 1);
ListFetchAsyncTask asyncList = new ListFetchAsyncTask();
asyncList.execute();