我目前正在使用Theme.AppCompat.Light
申请。但由于我不喜欢默认的微调器外观,我想用Theme.Holo.Light
微调器来查看。
如何强制某个小部件的样式?
由于
答案 0 :(得分:1)
在布局XML中,您可以轻松指定视图/窗口小部件的样式。因此,在您的情况下,您可以选择具有以下样式的旧Holo微调器样式:
<Spinner
style="@android:style/Widget.Holo.Light.Spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>