我有一个完美运行的微调器,并且只填充了具有 API 15 和 16 的 AVD 的数据。但是对于 API 级别 8 和 10,它没有显示下拉列表。我正在使用 ActionBarSherlock。
String[] categoryFixed = { "Mortgage/Rent", "Utilities",
"Car Payments", "Insurance", "Misc" };
IcsSpinner category =(IcsSpinner) findViewById(R.id.spinner1);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
R.layout.sherlock_spinner_item, categoryFixed);
adapter.setDropDownViewResource(R.layout.sherlock_spinner_dropdown_item);
category.setAdapter(adapter);
这是我的微调器
<Spinner
android:id="@+id/spinner1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.4"
/>
我在这里有什么特别想念的吗?