当前位置: 首页>>代码示例>>Java>>正文


Java ActiveBgAlert.snooze方法代码示例

本文整理汇总了Java中com.eveningoutpost.dexdrip.Models.ActiveBgAlert.snooze方法的典型用法代码示例。如果您正苦于以下问题:Java ActiveBgAlert.snooze方法的具体用法?Java ActiveBgAlert.snooze怎么用?Java ActiveBgAlert.snooze使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.eveningoutpost.dexdrip.Models.ActiveBgAlert的用法示例。


在下文中一共展示了ActiveBgAlert.snooze方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: Snooze

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public synchronized void Snooze(Context ctx, int repeatTime, boolean from_interactive) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active.");
        //KS TODO if (from_interactive) GcmActivity.sendSnoozeToRemote();
        return;
    }
    if (repeatTime == -1) {
        // try to work out default
        AlertType alert = ActiveBgAlert.alertTypegetOnly();
        if (alert != null) {
            repeatTime = alert.default_snooze;
            Log.d(TAG, "Selecting default snooze time: " + repeatTime);
        } else {
            repeatTime = 30; // pick a number if we cannot even find the default
            Log.e(TAG, "Cannot even find default snooze time so going with: " + repeatTime);
        }
    }
    activeBgAlert.snooze(repeatTime);
    //KS if (from_interactive) GcmActivity.sendSnoozeToRemote();
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:24,代码来源:AlertPlayer.java

示例2: Snooze

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public synchronized void Snooze(Context ctx, int repeatTime, boolean from_interactive) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active.");
        if (from_interactive) GcmActivity.sendSnoozeToRemote();
        return;
    }
    if (repeatTime == -1) {
        // try to work out default
        AlertType alert = ActiveBgAlert.alertTypegetOnly();
        if (alert != null) {
            repeatTime = alert.default_snooze;
            Log.d(TAG, "Selecting default snooze time: " + repeatTime);
        } else {
            repeatTime = 30; // pick a number if we cannot even find the default
            Log.e(TAG, "Cannot even find default snooze time so going with: " + repeatTime);
        }
    }
    activeBgAlert.snooze(repeatTime);
    if (from_interactive) GcmActivity.sendSnoozeToRemote();
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:24,代码来源:AlertPlayer.java

示例3: PreSnooze

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public synchronized  void PreSnooze(Context ctx, String uuid, int repeatTime) {
    Log.i(TAG, "PreSnooze called repeatTime = "+ repeatTime);
    stopAlert(ctx, true, false);
    ActiveBgAlert.Create(uuid, true, new Date().getTime() + repeatTime * 60000);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.wtf(TAG, "Just created the alert, where did it go...");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:12,代码来源:AlertPlayer.java

示例4: Snooze

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public synchronized  void Snooze(Context ctx, int repeatTime) {
    Log.i(TAG, "Snooze called repeatTime = " + repeatTime);
    stopAlert(ctx, false, false);
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.e(TAG, "Error, snooze was called but no alert is active. alert was probably removed in ui ");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}
 
开发者ID:StephenBlackWasAlreadyTaken,项目名称:xDrip-Experimental,代码行数:11,代码来源:AlertPlayer.java

示例5: PreSnooze

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public synchronized  void PreSnooze(Context ctx, String uuid, int repeatTime) {
    Log.i(TAG, "PreSnooze called repeatTime = "+ repeatTime);
    stopAlert(ctx, true, false);
    ActiveBgAlert.Create(uuid, true, new Date().getTime() + repeatTime * 60000 );
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        Log.wtf(TAG, "Just created the alert, where did it go...");
        return;
    }
    activeBgAlert.snooze(repeatTime);
}
 
开发者ID:StephenBlackWasAlreadyTaken,项目名称:xDrip-Experimental,代码行数:12,代码来源:AlertPlayer.java


注:本文中的com.eveningoutpost.dexdrip.Models.ActiveBgAlert.snooze方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。