本文介绍了Android的API 21 - TimePicker部件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有与API 21. TimePicker
部件一个问题,直到19 API的 TimePicker
是一个向上/向下列表类似iOS的,但在21+是圆的,就像一个在日历应用程序。
I've got a problem with the TimePicker
widget on API 21. Until API 19 the TimePicker
was an up-/down-list like iOS, but in 21+ it's round, like the one in the calendar app.
如何使用旧的21+,因为它打破了我的设计,如果是新的小工具。
How can I use the old one in 21+, because it breaks my design, if it is the new widget.
推荐答案
您可以通过设置timePickerMode属性为微调指定微调式时间选择器。在材质的默认值是时钟。
You can specify the spinner-style time picker by setting the timePickerMode attribute to "spinner". The default value on Material is "clock".
<TimePicker
...
android:timePickerMode="spinner" />
这篇关于Android的API 21 - TimePicker部件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!