单击特定事件时如何在 Android 中获取日历事件信息?
可以获取某个时间范围内的事件,但是当用户单击某些事件中的任何部分时是否可以获取事件信息。
例如,如果事件包含链接的 URI,应用程序是否可以知道单击的源事件?
It is possible to get the events within a time range but is it possible to get the event info when user clicks any part in certain events.
For example if Event contains a URI which is linkified is it possible for application to know the source event which was clicked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以试试这个:
`long end = now + search //in millis
Uri uri = Uri.withAppishedPath(Instances.CONTENT_URI,
String.format("%d/%d", 现在, 结束));
光标 c = 解析器.query(uri, 投影, 选择, null,
排序顺序);`
You can try this:
`long end = now + search //in millis
Uri uri = Uri.withAppendedPath(Instances.CONTENT_URI,
String.format("%d/%d", now, end));
Cursor c = resolver.query(uri, PROJECTION, selection, null,
SORT_ORDER);`