我似乎无法弄清楚这一点SimpleCursorAdapter
,每次我修复一个错误时,都会弹出另一个错误,如果我按照步骤修复那个错误,第一个错误会再次出现。我觉得我在这里绕圈子,所以这是我正在尝试调试的代码块,请注意,第一部分只是创建数据库,但我认为任何事情都可能有助于弄清楚它。
SQLiteDatabase rpgDB = null;
String classFields = " (classID, className, classHP)";
try {
rpgDB = this.openOrCreateDatabase("RpgDB", MODE_PRIVATE, null);
rpgDB.execSQL("DROP TABLE IF EXISTS " + classTable);
rpgDB.execSQL("CREATE TABLE IF NOT EXISTS " + classTable + " (classID INT(3), className TEXT, classHP INT(4));");
rpgDB.execSQL("INSERT INTO " + classTable + classFields + " VALUES (1, 'Warrior', 10);");
rpgDB.execSQL("INSERT INTO " + classTable + classFields + " VALUES (2, 'Rogue', 7);");
rpgDB.execSQL("INSERT INTO " + classTable + classFields + " VALUES (3, 'Mage', 5);");
String query = "SELECT className AS _id FROM " + classTable;
Cursor cursor = rpgDB.rawQuery(query, null);
rpgDB.close();
int[] to = new int[] { R.id.classDropDown };
String[] spinnerFields = new String[] { "_id" };
/**
* Test code to check value of cursor
*/
int count = cursor.getCount();
cursor.moveToFirst();
while (cursor.isAfterLast() == false)
{
String test = cursor.getString(0);
cursor.moveToNext();
}
SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(this, R.layout.main, cursor, spinnerFields, to);
int cursorcount = cursorAdapter.getCount();
// cursorAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
Spinner classDropDown = (Spinner) this.findViewById(R.id.classDropDown);
classDropDown.setAdapter(cursorAdapter);
} catch (Exception ex) {
System.out.println("Exception: " + ex);
}
从 SimpleCursorAdapter 填充 Spinner 似乎非常麻烦。
编辑:此代码的错误是
Invalid statement in fill window
如果我注释掉 rpgDB.close() 行
Spinner is not a view that can be bounds by this SimpleCursorAdapter
如果我将 select 语句和 spinnerfields 更改为(将 DB 注释掉):
String query = "SELECT className FROM " + classTable;
String[] spinnerFields = new String[] { "className" };
我得到:
column '_id' does not exist
编辑 XML:这是 main.xml(也是 id main)XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@color/white" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textSize="11pt"
android:text="@string/hello"
android:textColor="@color/baseTextColor" />
<Spinner
android:id="@+id/classDropDown"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
说明:因此,如果将来有人遇到此问题,多亏了 Luksprog,我对此了解得更好(他向我展示了修复程序):
android.R.id 和 android.R.layout "ids/layouts" 是 Android 组件的默认 xml 布局,例如 TextField 和 Spinner "list" 布局。Spinner 对象本身基本上是不完整的。您需要另一个 XML 部分来定义列表本身的外观和另一个用于行的部分(text1 是默认的 android TextField)。
因此,简而言之,将您的“to”字段分配给 TextField 或使用默认的 Android 字段之一,例如 android.id.text1,但为了使用它,我相信您还必须使用包含默认 android 字段的布局, andoid.R.layout(在我的例子中是 simple_spinner_item)。最后,将 dropdownresource 设置为您自己的 xml 或 android 默认值(我的是 android.R.layout.simple_spinner_dropdown_item)。