如何从微调器下拉选项中自定义样式?
我可以使用以下方法自定义微调器下拉列表中所选选项的背景:
<item name="android:spinnerStyle">@style/customSpinner</item>
<style name="customSpinner" parent="@android:style/Widget.Holo.Light.Spinner">
<item name="android:textColor">#000000</item>
<item name="android:background">#000000</item>
</style>
但我无法更改下拉列表中选项列表的背景和文本颜色。我该如何实现这一目标?
I can customize the background of the selected option on a spinner dropdown using:
<item name="android:spinnerStyle">@style/customSpinner</item>
<style name="customSpinner" parent="@android:style/Widget.Holo.Light.Spinner">
<item name="android:textColor">#000000</item>
<item name="android:background">#000000</item>
</style>
But I can't manage to change the background and textcolor of the list of options that the dropdown has. How do I achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
定制_spinner.xml -
custom_spinner.xml -