我剛使用Eclipse創建的Android應用程序,並且一切正常,然而,當我點擊微調,提示似乎空,但價值在那裏,因爲我可以選擇他們,是什麼我可以做些什麼讓他們可見?它在模擬器中工作,但不在電話上,謝謝!提示不顯示的項目
空白廣場的提示和值是有! :S
String sqlSelect = "SELECT id, name, password FROM password";
Cursor c = db.rawQuery(sqlSelect, null);
Spinner sp1 = (Spinner)findViewById(R.id.spinner1);
ArrayAdapter<String> ad = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item);
ad.setDropDownViewResource(android.R.layout.simple_spinner_item);
sp1.setAdapter(ad);
System.out.println("Total of records is:" + c.getCount());
if(c.moveToFirst()){
int i = 0;
while(c.moveToNext()){
ad.add(c.getString(c.getColumnIndex("name")));
i++;
}
}
佈局:
<Spinner
android:id="@+id/spinner1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<!-- Preview: [email protected]:layout/simple_spinner_item -->
</Spinner>
這裏有一個形象:
http://img163.imageshack.us/img163/659/cap201205222344.jpg
能否請您發佈您的代碼和XML佈局文件? –
已添加代碼!謝謝! – saman0suke