我使用基于AppCompat.Light.DarkActinBar
的主题。
(1)Spinner按预期工作
如果我添加一个像下面这样的微调器,一切都按预期工作:
<Spinner
android:id="@+id/spType"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
并设置适配器:
adapterType = new ArrayAdapter<MappedResourceValue>(getActivity(), R.layout.support_simple_spinner_dropdown_item, statisticTypes.getValues());
adapterType.setDropDownViewResource(R.layout.support_simple_spinner_dropdown_item);
spType.setAdapter(adapterType);
(2)视图的微调器样式不起作用
如果我添加一个按钮并想要设置它的样式,它看起来就像一个微调器,但它有一个白色的下拉图标而不是一个暗的...
<Button
android:id="@+id/btTypes"
style="?android:attr/spinnerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
我也试过style="?android:spinnerStyle"
,这显然没有任何区别......