是否可以从 TimePicker 中删除 AM/PM 按钮?
我想使用 TimePicker 显示24 小时时钟而不是12 小时,并且我不需要 AM/PM 按钮,只是想显示 24 小时时钟。
这可能吗?
我使用了 setIs24HourView(true) 但它不起作用。
建议我 如何显示 24 小时时钟?
I want to show 24 hours clock instead 12 hours using TimePicker,and I dont need the AM/PM buton, Simply want to show 24 hours clock.
Is this possible?
I used setIs24HourView(true)
but it is is not working.
Suggest me How can I show 24 hours clock?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否尝试过设置 setIs24HourView ?
如果您只是需要以其他非正常方式使用 NumberPicker 小部件:
Android 中有一个 NumberPicker 小部件,但它是一个私有 API。 此人提取了代码,以便您可以将其放入任何项目中。
以下是我如何将其用于税率的示例:
Have you tried setting setIs24HourView?
If you just need use the NumberPicker widget in other abnormal ways:
There is a NumberPicker widget in Android, but it is a private API. This guy pulled out the code such that you can drop it into any project.
Here is an example of how I used it for tax rates:
我遇到了同样的问题,但通过在活动的
onCreate
调用中执行setIs24HourView
解决了它。I've experienced the same problem but solved it by doing the
setIs24HourView
in theonCreate
call for the activity..您必须调用 setIs24HourView 函数并为此发送 true。
当时间选择器处于 24 模式时 AM/PM 将消失。
You must call setIs24HourView function and send true for that.
when time picker are in 24 mode AM/PM will be disappear.
您可以覆盖
这里是如何使用它
You can overrite the
Here is how to use it