Android4.4.X调用Alarmmanager接口

    /**
     * Returns whether the SDK is KitKat or later
     */
    public static boolean isKitKatOrLater() {
        return Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY_BEAN_MR2;
    }
    
     if (isKitKatOrLater()) {
            am.setExact(AlarmManager.ELAPSED_REALTIME_WAKEUP, timeInMillis, pendingIntent);
        } else {
            am.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, timeInMillis, pendingIntent);
     }
posted @ 2015-01-22 10:40  行走的思想  阅读(6)  评论(0编辑  收藏  举报  来源