单击特定事件时如何在 Android 中获取日历事件信息?

发布于 2024-10-15 18:25:34 字数 94 浏览 3 评论 0原文

可以获取某个时间范围内的事件,但是当用户单击某些事件中的任何部分时是否可以获取事件信息。

例如,如果事件包含链接的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

翻身的咸鱼 2024-10-22 18:25:34

你可以试试这个:

`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);`

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文