Результаты Android SimpleCursorAdapter не отображаются в AlertDialog
Я искал альтернативу блесне, так как всегда выбирается первый элемент (что вызывает у меня проблемы), и я нашел несколько примеров использования AlertDialog со списком.
У меня две проблемы:
Список отображается и отформатирован нормально, но в нем нет значений. Я знаю, что запрос возвращается, и курсор / адаптер содержит данные.
Это может быть признаком # 1 - но когда я выбираю пустую строку, Cursor cursor2 = (Cursor) ((AdapterView) диалоговое окно) .getItemAtPosition (which); оператор вызывает сбой (это ClassCastException).
Ранее у меня был похожий код, который устанавливал адаптер на объект вращения, и данные отображались нормально.
Я не думаю, что адаптер настроен правильно, и до сих пор не смог найти решение.
есть идеи?
Спасибо!
btnDenomination.setOnClickListener(new View.OnClickListener()
{
public void onClick(View w)
{
Cursor cursor = coinDB.myDataBase.rawQuery("select _id, denomination_desc from denomination", null); // must select the _id field, but no need to use it
startManagingCursor(cursor); // required in order to use the cursor in
String[] from = new String[] {"denomination_desc" }; // This is the database column name I want to display in the spinner
int[] to = new int[] { R.id.tvDBViewRow }; // This is the TextView object in the spinner
cursor.moveToFirst();
SimpleCursorAdapter adapterDenomination = new SimpleCursorAdapter(CoinsScreen.this,
android.R.layout.simple_spinner_item, cursor, from, to );
adapterDenomination.setDropDownViewResource(R.layout.db_view_row);
new AlertDialog.Builder(CoinsScreen.this)
.setTitle("Select Denomination")
.setAdapter(adapterDenomination, new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int which)
{
Cursor cursor2 = (Cursor) ((AdapterView<?>) dialog).getItemAtPosition(which);
strDenomination_id = cursor2.getString(0); // Gets column 1 in a zero based index, the first column is the PKID. this could
// be avoided by using a select AS statement.
Log.d("Item Selected", strDenomination_id );
TextView txtDenomination = (TextView) findViewById(R.id.textDenomination);
txtDenomination.setText(cursor2.getString(1));
dialog.dismiss();
}
}).create().show();
}
});
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:text=""
android:id="@+id/tvDBViewRow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF0000" />
</LinearLayout>