Spinner数据连接问题 - 数据绑定成功,但微调器显示空白文本

时间:2011-08-26 17:41:06

标签: android spinner

我一直在尝试将微调器绑定到数据库,最后成功了。我使用cursoradapter将spinner连接到数据库表。但问题是微调器被填充但其中的列表项显示空白文本。我知道绑定是成功的,因为它显示的行数与数据库表中的记录一样多。 无法弄清楚它是什么。一些身体请帮助我被困在这里 我发布下面的代码

public long createAccount() {

    ContentValues initialValues = createContentValues();
    Log.i("DB", initialValues.get(KEY_NAME)+":"+
            initialValues.get(KEY_MAILBOXTYPE)+":"+
            initialValues.get(KEY_OUTPORT)+":"+
            initialValues.get(KEY_INPORT)+":"+
            initialValues.get(KEY_INSERVER)+":"+
            initialValues.get(KEY_OUTSERVER)+":");
    return database.insert(DATABASE_TABLE, null, initialValues);
}



/**
 * Return a Cursor over the list of all todo in the database
 * 
 * @return Cursor over all notes
 */
public Cursor fetchAccount() {
    Log.i("DB", "Cursor opened");

    return database.query(DATABASE_TABLE, new String[] { KEY_ROWID,
             KEY_NAME,KEY_INSERVER}, null, null, null,
            null, null);



}

微调器绑定的代码如下:

                mAccAdap.createAccount();

                Cursor c = mAccAdap.fetchAccount();        
                startManagingCursor(c);
                SimpleCursorAdapter CursorAdapter = new SimpleCursorAdapter(
                        this,android.R.layout.simple_spinner_item,c,
                        new String[]{mAccAdap.KEY_INSERVER},new int[]{R.id.tvDBViewRow});

                            CursorAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

                            spinEmail=(Spinner)findViewById(R.id.spinAccount);
                            spinEmail.setAdapter(CursorAdapter);

1 个答案:

答案 0 :(得分:1)

尝试更改SimpleCursorAdapter ...

的这一部分

new int[]{R.id.tvDBViewRow}

到此......

new int[]{android.R.id.text1}