单一视图中的日期和时间选择器
我想知道我们是否可以在一个视图中同时实现日期和时间选择器...
在我们的 iPhone 应用程序中,您可以通过一个视图同时选择日期和时间。但在 Android 中,我们有单独使用日期选择器和时间选择器。有没有一种方法可以从一个视图中获取日期和时间的值?
I wanted to know whether we can implement both date and time picker in one view...
In our iPhone app you can pick both date and time through one view. But in Android we have date picker and time picker used separately. Is there any method by which I can get values of both date and time from one view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有内置的小部件可以同时实现日期和时间选择器。但是,您可以为此创建自己的自定义视图,或许可以结合现有的
DatePicker
和TimePicker
。There is no built in widget that implements both a date and time picker. However, you can create your own custom view for that, perhaps combining the existing
DatePicker
andTimePicker
.