在 XML 中设置 Android TimePicker
是否可以在 XML 文件中将 TimePicker 时间模式设置为 24 小时模式?或者只能用Java实现?我想做一个具有 24 小时选择器的布局,但我找不到这样的属性。
Is it possible to set TimePicker hours mode to 24-hours-mode in XML file? Or is it posible in Java only? I want to make a layout that has 24-hours picker but I can't find such attribute.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,您不能在 XML 中设置 24 小时模式,您必须使用
No, you can't set the 24 hours mode in the XML, you have to use
可以通过子类化
TimePicker
来获取 24 小时版本,并在 XML 文件中使用该子类和适当的包名称:在布局中您可以添加
It is possible by subclassing
TimePicker
to get a 24hour version, and using that sub class in the XML file with the appropriate package name:in the layout you may add
您可以从 java 文件设置它。
xml
java
You can set it from java file.
xml
java