Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Android 是否有任何 API 提供日期时间作为用户的输入(startActivityForResult)?
我如何从android中的用户那里获取时间和日期,以便稍后将其与系统时间进行比较?
您可以使用日期/时间选择器视图:
时间选择器
日期选择器
选择器示例
然后与 Boe 描述的系统时间进行比较。
您只需要从设备获取 unix 时间。
long l = (System.currentTimeMillis()/1000); Data d = new Date(l); d.toString();
这应该有帮助