这是我在“ if (cursor == null)
。”中的代码。如您所见,我没有放任何代码,因为如果用户的输入与搜索视图不匹配,我不知道如何在 ListView 中显示“未找到任何结果”。我正在使用 ListView 来显示用户的搜索结果。
Cursor cursor = mDbHelper.searchCrvJapanesealpha((query != null ? query.toString() : "@@@@"));
if (cursor == null) {
} else {
// Specify the columns we want to display in the result
String[] from = new String[] {
DBAdapter.KEY_JAPANESECHAR,
DBAdapter.KEY_JAPANESEALPHA};
我只是Android的初学者。