0

これが私のonCreateメソッドです:

    /** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Intent intent = getIntent();
    if (intent.getData() == null)
        intent.setData(Formulas.CONTENT_URI);

    AutoCompleteTextView searchBar = (AutoCompleteTextView)findViewById(R.id.searchBar);
    Cursor c = getContentResolver().query(getIntent().getData(),new String[] { Formulas.TITLE }, null, null, null);
    SimpleCursorAdapter searchAdapter = 
        new SimpleCursorAdapter(this, android.R.layout.simple_dropdown_item_1line, c, 
                new String[] { Formulas.TITLE } , new int[] { android.R.id.text1} );
    searchBar.setAdapter(searchAdapter);
}

databaseopenhelperにサンプルデータを入力しました。

        @Override
    public void onCreate(SQLiteDatabase db) {
        db.execSQL("CREATE TABLE formula ( \n" +
                "_id INTEGER PRIMARY KEY AUTOINCREMENT, \n" +
                "title TEXT NOT NULL, \n" +
                "formula TEXT NOT NULL \n" +
                ");");
        db.execSQL("INSERT INTO formula VALUES ( \n" +
                "null, \"Pythagorean theorium\", \"a^2+b^2=c^2\" \n" +
                "); ");
        db.execSQL("INSERT INTO formula VALUES ( \n" +
                "null, \"Perimeter of a square\", \"l^2 * w^2\" \n" +
                "); ");
        db.execSQL("INSERT INTO formula VALUES ( \n" +
                "null, \"Area of a square\", \"l^4\" \n" +
                "); ");
    }

問題は、アダプターをに設定したところです。メソッドAutoCompleteTextViewを使用して挿入した値を期待しています。SQLiteDatabase.execSQL(String)しかし、何もありませんか?ドロップダウンボックスも表示されませんか?デバッグを使用しましたが、Cursorはnullではなく、アダプターでもAutoCompleteTextView?でもないことがわかりました。何が問題なのですか?私はすでに自分のコンテンツプロバイダーを定義しました。

4

1 に答える 1

0

コンテンツの uri に問題があり、完全に私のせいだったため、クエリは何も返しませんでした。これ が関連スレッドです。

于 2010-08-22T20:40:57.987 に答える