Samsung S Planner和Google Calendar问题

时间:2012-12-07 08:38:22

标签: android-intent calendar android-4.0-ice-cream-sandwich

我遇到的问题是,我测试的所有ICS手机上的应用程序都能正常运行,但S Planner不是三星手机 我正在使用行动选择来挑选一个事件。调用s计划程序何时返回时崩溃的问题。我决定在手机上安装标准的Google日历,因为这可以解决我的问题。 这是代码

    public static String ANDROID_CALENDAR_AUTHORITY_1_0 = "calendar";
    public static String ANDROID_CALENDAR_AUTHORITY_2_0 = "com.android.calendar";
    public static String ANDROID_CALENDAR_PROVIDER_PATH_CALENDARS = "calendars";
    public static String ANDROID_CALENDAR_PROVIDER_PATH_EVENTS = "events";

    selected_google_calendar_id = getCallPlanCalendar();
    Uri uri = new Uri.Builder()
    .scheme(ContentResolver.SCHEME_CONTENT) 
    .authority( CalendarProviderConstants. ANDROID_CALENDAR_AUTHORITY_2_0)
    .appendPath(CalendarProviderConstants.ANDROID_CALENDAR_PROVIDER_PATH_EVENTS).build();

    Intent intent = new Intent(Intent.ACTION_PICK, uri);
    intent.putExtra(EXTRA_CALENDAR_ID, selected_google_calendar_id);
    startActivityForResult(intent, 2);

问题是我无法获得打开Goog​​le日历应用的代码,即使我删除了s planner。如果它被删除它崩溃有没有办法更改默认的应用程序打开或已经sumsung黑客它只有s计划将打开?

0 个答案:

没有答案