当显示已更新的数据并强制重绘时,如何获取当前的 Android 视图?我完成了 Android 的记事本教程并完成了第三课,没有任何问题——毕竟提供了解决方案——但我被困在我的第一个不平凡的修改上。
我在“添加注释”按钮旁边的菜单中添加了一个新按钮。当按下该按钮时,该按钮会在系统中每个笔记的标题中添加一个字母。但是,无论我等待多长时间,新标题都不会出现在笔记列表中。我知道更新程序有效,因为如果我关闭应用程序并将其重新启动,更改确实会出现。
到目前为止,我发现我必须使用某种失效方法来使程序用新值重绘自身。我知道这invalidate()
是从 UI 线程postInvalidate()
使用的,并且是从非 UI 线程1, 2使用的,但我什至不知道我在哪个线程中。此外,这两种方法都必须从View
需要的对象中调用绘图,我不知道如何获得该对象。我尝试的一切都会返回null
。
我的主要课程:
public boolean onMenuItemSelected(int featureId, MenuItem item) {
switch(item.getItemId()) {
case INSERT_ID:
createNote();
return true;
case NEW_BUTTON:
expandTitles();
return true;
default:
// Intentionally empty
}
return super.onMenuItemSelected(featureId, item);
}
private void expandTitles() {
View noteListView = null;
// noteListView = findViewById(R.layout.notes_list); // null
// noteListView =
// getWindow().getDecorView().findViewById(android.R.id.content);
// From SO question 4486034
noteListView = findViewById(R.id.body); // Fails
mDbHelper.expandNoteTitles(noteListView);
}
我的 DAO 课程:
public void expandNoteTitles(View noteListView) {
Cursor notes = fetchAllNotes();
for(int i = 1; i <= notes.getCount(); i++) {
expandNoteTitle(i);
}
// NPE here when attempt to redraw is not commented out
noteListView.invalidate(); // Analogous to AWT's repaint(). Not working.
// noteListView.postInvalidate(); // Like repaint(). Not working.
}
public void expandNoteTitle(int i) {
Cursor note = fetchNote(i);
long rowId =
note.getLong(note.getColumnIndexOrThrow(NotesDbAdapter.KEY_ROWID));
String title =
note.getString(note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)) + "W";
String body =
note.getString(note.getColumnIndexOrThrow(NotesDbAdapter.KEY_BODY));
updateNote(rowId, title, body);
}
按下按钮后,我该怎么做才能显示更新的笔记标题?
显然,我是 Android 的新手。我指出这一点是为了鼓励您使用小词并解释甚至是显而易见的事情。我知道这是第 10 万个“Android 不重绘”问题,但我已经阅读了数十篇现有帖子,它们要么不适用,要么对我没有意义。
1:postInvalidate() 是做什么的?
2:Android的invalidate()和postInvalidate()方法有什么区别?