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


Java ActiveBgAlert.getOnly方法代码示例

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


在下文中一共展示了ActiveBgAlert.getOnly方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: calcuatleArmTimeBg

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
private long calcuatleArmTimeBg(long now) {
    Long wakeTimeBg = Long.MAX_VALUE;
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert != null) {
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert != null) {
            wakeTimeBg = activeBgAlert.next_alert_at ;
            Log.d(TAG , "ArmTimer BG alert -waking at: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
            if (wakeTimeBg < now) {
                // next alert should be at least one minute from now.
                wakeTimeBg = now + 60000;
                Log.w(TAG , "setting next alert to 1 minute from now (no problem right now, but needs a fix someplace else)");
            }
            
        }
    }
    Log.d("Notifications" , "calcuatleArmTimeBg returning: "+ new Date(wakeTimeBg) +" in " +  (wakeTimeBg - now)/60000d + " minutes");
    return wakeTimeBg;
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:20,代码来源:Notifications.java

示例3: 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

示例4: onKeyDown

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    switch (event.getKeyCode()) {
        case KeyEvent.KEYCODE_VOLUME_DOWN:
        case KeyEvent.KEYCODE_VOLUME_UP:
        case KeyEvent.KEYCODE_VOLUME_MUTE:
            if (JoH.quietratelimit("button-press", 5)) {
                if (Pref.getBooleanDefaultFalse("buttons_silence_alert")) {
                    final ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
                    if (activeBgAlert != null) {
                        AlertPlayer.getPlayer().Snooze(xdrip.getAppContext(), -1);
                        final String msg = "Snoozing alert due to volume button press";
                        JoH.static_toast_long(msg);
                        UserError.Log.ueh(TAG, msg);
                    } else {
                        if (d) UserError.Log.d(TAG, "no active alert to snooze");
                    }
                } else {
                    if (d) UserError.Log.d(TAG, "No action as preference is disabled");
                }
            }
            break;
    }
    if (d) Log.d(TAG, "Keydown event: " + keyCode + " event: " + event.toString());
    return super.onKeyDown(keyCode, event);
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:27,代码来源:Home.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:NightscoutFoundation,项目名称:xDrip,代码行数:12,代码来源:AlertPlayer.java

示例6: ClockTick

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public void ClockTick(Context ctx, boolean trendingToAlertEnd, String bgValue)
{
    if (trendingToAlertEnd) {
        Log.d(TAG,"ClockTick: This alert is trending to it's end will not do anything");
        return;
    }
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        // Nothing to do ...
        return;
    }
    if(activeBgAlert.ready_to_alarm()) {
        stopAlert(ctx, false, false, false); // also don't cancel notification

        int timeFromStartPlaying = activeBgAlert.getUpdatePlayTime();
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert == null) {
            Log.d(TAG, "ClockTick: The alert was already deleted... will not play");
            ActiveBgAlert.ClearData();
            return;
        }
        Log.d(TAG,"ClockTick: Playing the alert again");
        long nextAlertTime = alert.getNextAlertTime(ctx);
        activeBgAlert.updateNextAlertAt(nextAlertTime);
        
        Vibrate(ctx, alert, bgValue, alert.override_silent_mode, timeFromStartPlaying);
    }

}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:30,代码来源:AlertPlayer.java

示例7: ClockTick

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public void ClockTick(Context ctx, boolean trendingToAlertEnd, String bgValue)
{
    if (trendingToAlertEnd) {
        Log.d(TAG,"ClockTick: This alert is trending to it's end will not do anything");
        return;
    }
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        // Nothing to do ...
        return;
    }
    if(activeBgAlert.ready_to_alarm()) {
        stopAlert(ctx, false, false, false); // also don't cancel notification

        final int minutesFromStartPlaying = activeBgAlert.getAndUpdateAlertingMinutes();
        final AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert == null) {
            Log.d(TAG, "ClockTick: The alert was already deleted... will not play");
            ActiveBgAlert.ClearData();
            return;
        }
        Log.d(TAG,"ClockTick: Playing the alert again");
        long nextAlertTime = alert.getNextAlertTime(ctx);
        activeBgAlert.updateNextAlertAt(nextAlertTime);
        
        VibrateNotifyMakeNoise(ctx, alert, bgValue, alert.override_silent_mode, minutesFromStartPlaying);
    }

}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:30,代码来源:AlertPlayer.java

示例8: 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

示例9: 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

示例10: ClockTick

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入方法依赖的package包/类
public void ClockTick(Context ctx, boolean trendingToAlertEnd, String bgValue)
{
    if (trendingToAlertEnd) {
        Log.d(TAG,"ClockTick: This alert is trending to it's end will not do anything");
        return;
    }
    ActiveBgAlert activeBgAlert = ActiveBgAlert.getOnly();
    if (activeBgAlert  == null) {
        // Nothing to do ...
        return;
    }
    if(activeBgAlert.ready_to_alarm()) {
        stopAlert(ctx, false, false);

        int timeFromStartPlaying = activeBgAlert.getUpdatePlayTime();
        AlertType alert = AlertType.get_alert(activeBgAlert.alert_uuid);
        if (alert == null) {
            Log.d(TAG, "ClockTick: The alert was already deleted... will not play");
            ActiveBgAlert.ClearData();
            return;
        }
        Log.d(TAG,"ClockTick: Playing the alert again");
        long nextAlertTime = alert.getNextAlertTime(ctx);
        activeBgAlert.updateNextAlertAt(nextAlertTime);
        
        Vibrate(ctx, alert, bgValue, alert.override_silent_mode, timeFromStartPlaying);
    }

}
 
开发者ID:StephenBlackWasAlreadyTaken,项目名称:xDrip-Experimental,代码行数:30,代码来源:AlertPlayer.java


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