Android 日历应用程序和后退按钮

发布于 2024-11-02 07:13:50 字数 424 浏览 0 评论 0原文

我正在从我的应用程序中打开 Android 日历以创建事件。为此,我使用下一个代码片段:

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
...
startActivity(intent);

当打开日历并按后退按钮时,事件将被保存 - 我不希望发生这种情况。如果我理解正确(来自此链接),这是默认行为的日历应用程序。无论如何,我可以覆盖它,或者我必须实施我自己的“日历创建事件”活动吗?

我希望我能以某种方式覆盖它。但我怀疑我能做到。

I am opening an Android calendar from my application in order to create event. For that I use next fragment of code:

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
...
startActivity(intent);

When calendar is opened and I press back button, event is saved - which I don't want to happen. If I understand correctly (from this link) it is default behavior of calendar application. Is there anyway I can override that or I have to implement my own "calendar create event" activity?

I hope I can override it somehow. But I doubt I can.

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

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

发布评论

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

评论(1

栖竹 2024-11-09 07:13:50

我不相信您可以覆盖其他应用程序的行为。您很可能必须创建自己的活动屏幕来捕获事件信息,然后以编程方式将该日历事件添加或编辑到手机。

I don't believe you can override another applications behavior. You will most likely have to create your own activity screen that captures the event information and then add or edit that calendar event to the phone programatically.

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