如何通过编程代码到达日历中的编辑事件?

发布于 2024-12-05 03:45:36 字数 102 浏览 1 评论 0原文

如何通过编程代码到达日历中的编辑事件? 非常感谢任何帮助,并提前致谢。 在此处输入图像描述

How to reach edit event in Calendar through programmatical code?
Any help is highly appreciated and thanks in advance.
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

心在旅行 2024-12-12 03:45:36

使用这个意图你可能会得到解决方案:

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("title", "Some title");
intent.putExtra("description", "Some description");
intent.putExtra("beginTime",  cal.getTimeInMillis());
intent.putExtra("endTime",  cal.getTimeInMillis()+60*60*1000);
startActivity(intent);

use this intent you may get solution:

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("title", "Some title");
intent.putExtra("description", "Some description");
intent.putExtra("beginTime",  cal.getTimeInMillis());
intent.putExtra("endTime",  cal.getTimeInMillis()+60*60*1000);
startActivity(intent);
过气美图社 2024-12-12 03:45:36

本教程介绍如何访问 Google Android 应用程序内的内部日历数据库:
http://jimblackler.net/blog/?p=151

This tutorial describes how to access the internal calendar database inside Google Android applications:
http://jimblackler.net/blog/?p=151

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