4

设备恢复出厂设置后。我正在尝试检索日历显示名称(通过下面的代码),它返回没有日历。但至少打开一次设备日历应用程序时,将正确检索默认手机日历。

有没有办法在不打开设备日历应用程序的情况下检索日历(尤其是默认的)?

提前致谢。

以下是设备上存在的用于检索日历的代码:

private Uri getCalendarUri() {
      return  Uri.parse(Integer.parseInt(Build.VERSION.SDK) > 7 ? "content://com.android.calendar/calendars" : "content://calendar/calendars");
   }

   private String[] getCalendars(Context context) {
      String[] res = null;
      ContentResolver contentResolver = context.getContentResolver();
      Cursor cursor = null;
      try {
         cursor = contentResolver.query( getCalendarUri(),
                 Integer.parseInt(Build.VERSION.SDK) > 13 ? new String[]{"_id", "calendar_displayName"} : new String[]{"_id", "displayName"}, null, null, "_id ASC");

         if (cursor.getCount() > 0) {
            res = new String[cursor.getCount()];
            int i = 0;
            while (cursor.moveToNext()) {
               res[i] = cursor.getString(0) + ": " + cursor.getString(1);
               i++;
            }
         }
      }
      catch (Exception e) {
         e.printStackTrace();
      }
      finally {
         if (cursor != null)
            cursor.close();
      }
      return res;
   }
4

2 回答 2

2

我解决了这个问题。

在我的活动中使用此代码:

private static boolean calendar_opened = false;

private void openCalendar() {
  String[] calendars = getCalendars(this);
  if (!calendar_opened && calendars != null && calendars.length <= 0) {
     new Timer().schedule(new TimerTask() {
        @Override
        public void run() {
           runOnUiThread(new Runnable() {
              public void run() {
                 try {
                    //bring back my activity to foreground
                    final Intent tmpIntent = (Intent) MainScreen.this.getIntent().clone();
                    tmpIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
                    tmpIntent.setClass(MyExams.getInstance(), MainScreen.class);
                    PendingIntent.getActivity(MyExams.getInstance(), 0, tmpIntent, PendingIntent.FLAG_UPDATE_CURRENT).send();
                 }
                 catch (Exception e) {
                 }
              }
           });
        }
     }, 100 );//time is your dissection

     Intent i = new Intent();
     i.setClassName("com.android.calendar", "com.android.calendar.LaunchActivity");
     i.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
     startActivity(i);
     calendar_opened = true;
  }

}
//After my activity is on foreground I killed the calendar using this code, even there's no need because of FLAG_ACTIVITY_NO_HISTORY:
ActivityManager activityManager = (ActivityManager) MainScreen.this.getSystemService(Context.ACTIVITY_SERVICE);
activityManager.killBackgroundProcesses("com.android.calendar");
于 2012-12-18T16:39:28.777 回答
1

我认为设备日历应用程序必须在您打开它时安装一个日历,在恢复出厂设置后打开它之前可能不可用。

我认为您不希望用户必须打开日历应用程序。如果您不介意在后台打开日历应用程序,您可以考虑通过 aService将其打开,然后尽快将其关闭,这样用户就不会注意到并且设备日历可用。

android-codes-examples.blogspot.in/2011/11/... 看看这个链接,有用吗?

于 2012-12-12T15:23:12.783 回答