1

所以在这段代码中,我试图根据通过我的查询检索一个游标showResults(),然后创建一个adapterand loadermanager。我觉得问题是由我的SimpleCursorAdapter构造函数中的布局和 id 引起的,因为错误是在我创建布局和 id 时开始的。我使用 Log 和 if 语句来查看游标是否为 null 并且 logcat 上没有显示任何内容,所以这一定意味着游标很好。

public class SearchResultsActivity extends FragmentActivity implements LoaderManager.LoaderCallbacks<Cursor> {

private ListView list;
private DatabaseTable db;
private SimpleCursorAdapter mAdapter;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_search_results);
    db = new DatabaseTable(this);
    handleIntent(getIntent());
}

public void onNewIntent(Intent intent) {
    setIntent(intent);
    handleIntent(intent);
}

private void handleIntent(Intent intent) {
     if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
        String query = intent.getStringExtra(SearchManager.QUERY);
        showResults(query);
    }

}

private void showResults(String query) {
    db = new DatabaseTable(this);
    Cursor cursor = db.getContactMatches(query, null);
    list = (ListView)findViewById(android.R.id.list);
    mAdapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, 
            null, new String[] {DatabaseTable.COL_NAME}, new int[] {android.R.id.text1}, 0);
    getLoaderManager().initLoader(0, null, this);
    list.setAdapter(mAdapter);
    list.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            Intent contactIntent = new Intent(getApplicationContext(), ContactActivity.class);
            contactIntent.setData(getIntent().getData());
            startActivity(contactIntent);
        }
    });
}
4

3 回答 3

1

由于您的代码在线崩溃list.setAdapter(mAdapter);list因此给您一个空指针是唯一有意义的对象。

经过进一步检查,很明显您list在最初声明后没有分配。onCreate()您需要在之后添加类似这样的内容setContentView()

list = (ListView) findViewById(android.R.id.list);

(如果您的对象有 ,这就是您访问它的方式android:id="@android:id/list";如果您分配了自己的 ID,请R.id.your_id_here改用。)

于 2013-01-03T04:04:00.877 回答
0

这可能是您的错误:

mAdapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, 
            null, new String[] {DatabaseTable.COL_NAME}, new int[] {android.R.id.text1}, 0);

该适配器需要Cursor在您传入null参数的位置传入构造函数,如下所示:

mAdapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, 
            cursor, new String[] {DatabaseTable.COL_NAME}, new int[] {android.R.id.text1}, 0);
于 2013-01-03T04:04:02.610 回答
0

在查询之前先尝试获取可读数据库:

db = new DatabaseTable(this);
Cursor cursor = db.getReadableDatabase().getContactMatches(query, null);
于 2013-01-03T04:04:28.783 回答