具有 Sense UI 的 Android 手机上的日历 ContentProvider URL

发布于 2024-09-15 21:31:00 字数 311 浏览 7 评论 0原文

我有一个应用程序可以将事件添加到设备上的日历中。我有以下日历 ContentProvider URL:

Pre Froyo: content://calendar/calendars
Froyo: content://com.android.calendar/calendars

这些 URL 对于 Nexus One 工作正常,但不会在 HTC Desire/Incredible/Hero 上返回任何日历。可能所有带有 Sense UI 的手机。这发生在 2.1 和 2.2 上。

有人以前遇到过这个问题并有解决方法吗?

I have an application that adds an event to the calendar on the device. I have the following URLs for the Calendar ContentProvider:

Pre Froyo: content://calendar/calendars
Froyo: content://com.android.calendar/calendars

These urls work fine for Nexus One but do not return any calendars on HTC Desire/Incredible/Hero. Probably all phones with a Sense UI. This happens on 2.1 and 2.2.

Has anybody run into this problem before and has any workarounds?

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

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

发布评论

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

评论(1

拥抱我好吗 2024-09-22 21:31:00

使用此代码获取您平台的 URI

private String getCalendarUriBase() {

            String calendarUriBase = null;
            Uri calendars = Uri.parse("content://calendar/calendars");
            Cursor managedCursor = null;
            try {
                managedCursor = managedQuery(calendars, null, null, null, null);
            } catch (Exception e) {
            }
            if (managedCursor != null) {
                calendarUriBase = "content://calendar/";
            } else {
                calendars = Uri.parse("content://com.android.calendar/calendars");
                try {
                    managedCursor = managedQuery(calendars, null, null, null, null);
                } catch (Exception e) {
                }
                if (managedCursor != null) {
                    calendarUriBase = "content://com.android.calendar/";
                }
            }
            return calendarUriBase;
        }

use this code to get the URI for your platform

private String getCalendarUriBase() {

            String calendarUriBase = null;
            Uri calendars = Uri.parse("content://calendar/calendars");
            Cursor managedCursor = null;
            try {
                managedCursor = managedQuery(calendars, null, null, null, null);
            } catch (Exception e) {
            }
            if (managedCursor != null) {
                calendarUriBase = "content://calendar/";
            } else {
                calendars = Uri.parse("content://com.android.calendar/calendars");
                try {
                    managedCursor = managedQuery(calendars, null, null, null, null);
                } catch (Exception e) {
                }
                if (managedCursor != null) {
                    calendarUriBase = "content://com.android.calendar/";
                }
            }
            return calendarUriBase;
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文