我有一个使用Theme.Holo.Light的活动,其中包含EditText,RadioButtons和DatePicker。我想使用Theme.Holo.Light进行整个活动,除了DatePicker,我想成为Theme.Light风格。我怎么能这样做?
答案 0 :(得分:5)
你有没有试过像
这样的东西<DatePicker
...
style="@android:style/Widget.DatePicker"/>
Holo使用@android:style/Widget.Holo.DatePicker
,而@android:style/Widget.DatePicker
是您需要使用的。{/ p>
链接:
更新
似乎DatePicker是使用3个NumberPickers构建的。我的回答是正确的,但它是不完整的。我发现解决问题的最佳方法是重新创建自己的DatePicker(源代码中的copypaste),并为DatePicker和3里面的NumberPickers提供样式。
GitHub上的布局链接: