我想从自定义标签重新加载我的活动。活动主要包括其中的列表视图&如何重新加载它。任何片段或示例代码都会有所帮助。我已经尝试了在Android中重新加载活动的所有事情,我想知道关于自定义选项卡。谢谢。
listContent = (ListView)findViewById(R.id.contentlist);
mySQLiteAdapter = new SQLAdapter(this);
mySQLiteAdapter.openToWrite();
cursor = mySQLiteAdapter.queueAll();
String[] from = new String[]{SQLAdapter.YMM,SQLAdapter.SS}
int[] to = new int[]{R.id.ymm,R.id.ss};
cursorAdapter =
new SimpleCursorAdapter(this, R.layout.row, cursor, from, to);
listContent.setAdapter(cursorAdapter);
listContent.setOnItemClickListener(listContentOnItemClickListener);
cursorAdapter.getCursor().requery();
cursorAdapter.notifyDataSetChanged();
答案 0 :(得分:0)
如果更改列表中的数据并通过调用getListView()使列表视图无效.invalidateViews()活动将自动更新。