gpt4 book ai didi

android - 如何在我的 Android 应用程序中获取日历页面?

转载 作者:太空狗 更新时间:2023-10-29 14:26:50 27 4
gpt4 key购买 nike

我在我的应用程序中使用此代码并获得以下页面。

Intent calendarIntent = new Intent(Intent.ACTION_EDIT);  
calendarIntent.setType("vnd.android.cursor.item/event");
calendarIntent.putExtra("title", "Title");
calendarIntent.putExtra("beginTime", new Date());
calendarIntent.putExtra("endTime", new Date(2013,7,7));
calendarIntent.putExtra("description", "Description");

startActivity(calendarIntent);

enter image description here

但我想要这个页面

enter image description here

我应该在我的代码中更改什么。请帮助我。

enter image description here

最佳答案

试试这个:

    long startMillis;
...
Uri.Builder builder = CalendarContract.CONTENT_URI.buildUpon();
builder.appendPath("time");
ContentUris.appendId(builder, startMillis);
Intent intent = new Intent(Intent.ACTION_VIEW).setData(builder.build());
startActivity(intent);

关于android - 如何在我的 Android 应用程序中获取日历页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11607250/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com