Android 日历应用程序和后退按钮
我正在从我的应用程序中打开 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信您可以覆盖其他应用程序的行为。您很可能必须创建自己的活动屏幕来捕获事件信息,然后以编程方式将该日历事件添加或编辑到手机。
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.