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


Java ActiveBgAlert类代码示例

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


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

示例1: stopAlert

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
public synchronized void stopAlert(Context ctx, boolean ClearData, boolean clearIfSnoozeFinished, boolean cancelNotification) {

        Log.d(TAG, "stopAlert: stop called ClearData " + ClearData + "  ThreadID " + Thread.currentThread().getId());
        if (ClearData) {
            ActiveBgAlert.ClearData();
        }
        if (clearIfSnoozeFinished) {
            ActiveBgAlert.ClearIfSnoozeFinished();
        }
        if (cancelNotification) {
            notificationDismiss(ctx);
        }
        if (mediaPlayer != null) {
            mediaPlayer.stop();
            mediaPlayer.release();
            mediaPlayer = null;
        }
        revertCurrentVolume(ctx);
    }
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:20,代码来源: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.");
        //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

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

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

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

示例6: stopAlert

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
public synchronized void stopAlert(Context ctx, boolean ClearData, boolean clearIfSnoozeFinished) {

        Log.d(TAG, "stopAlert: stop called ClearData " + ClearData + "  ThreadID " + Thread.currentThread().getId());
        if (ClearData) {
            ActiveBgAlert.ClearData();
        }
        if(clearIfSnoozeFinished) {
            ActiveBgAlert.ClearIfSnoozeFinished();
        }
        notificationDismiss(ctx);
        if (mediaPlayer != null) {
            mediaPlayer.stop();
            mediaPlayer.release();
            mediaPlayer = null;
        }
    }
 
开发者ID:StephenBlackWasAlreadyTaken,项目名称:xDrip-Experimental,代码行数:17,代码来源:AlertPlayer.java

示例7: snoozeBgAlert

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
private void snoozeBgAlert() {
    AlertType activeBgAlert = ActiveBgAlert.alertTypegetOnly();

    int snooze = 30;
    if(activeBgAlert != null) {
        if(activeBgAlert.default_snooze != 0) {
            snooze = activeBgAlert.default_snooze;
        } else {
            snooze = SnoozeActivity.getDefaultSnooze(activeBgAlert.above);
        }
    }

    AlertPlayer.getPlayer().Snooze(getApplicationContext(), snooze);
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:15,代码来源:SnoozeOnNotificationDismissService.java

示例8: startAlert

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
public synchronized  void startAlert(Context ctx, boolean trendingToAlertEnd, AlertType newAlert, String bgValue , boolean start_snoozed)  {
    Log.d(TAG, "startAlert called, Threadid " + Thread.currentThread().getId());
    if (trendingToAlertEnd) {
        Log.d(TAG, "startAlert: This alert is trending to it's end will not do anything");
        return;
    }

    stopAlert(ctx, true, false);

    long nextAlertTime = newAlert.getNextAlertTime(ctx);

    ActiveBgAlert.Create(newAlert.uuid, start_snoozed, nextAlertTime);
    if (!start_snoozed) Vibrate(ctx, newAlert, bgValue, newAlert.override_silent_mode, 0);
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:15,代码来源: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:NightscoutFoundation,项目名称:xDrip,代码行数: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, 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

示例11: addListenerOnButton

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
public void addListenerOnButton() {
    buttonSnooze = (Button)findViewById(R.id.button_snooze);

    //low alerts
    disableLowAlerts = (Button)findViewById(R.id.button_disable_low_alerts);
    clearLowDisabled = (Button)findViewById(R.id.enable_low_alerts);

    //high alerts
    disableHighAlerts = (Button)findViewById(R.id.button_disable_high_alerts);
    clearHighDisabled = (Button)findViewById(R.id.enable_high_alerts);

    //all alerts
    disableAlerts = (Button)findViewById(R.id.button_disable_alerts);
    clearDisabled = (Button)findViewById(R.id.enable_alerts);
    sendRemoteSnooze = (Button)findViewById(R.id.send_remote_snooze);

    buttonSnooze.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            int intValue = getTimeFromSnoozeValue(snoozeValue.getValue());
            AlertPlayer.getPlayer().Snooze(getApplicationContext(), intValue);
            Intent intent = new Intent(getApplicationContext(), Home.class);
            if (ActiveBgAlert.getOnly() != null) {
                Log.e(TAG, "Snoozed!  ActiveBgAlert.getOnly() != null TODO restart Home.class - watchface?");
                //KS TODO startActivity(intent);
            }
            finish();
        }

    });
    showDisableEnableButtons();

    setOnClickListenerOnDisableButton(disableAlerts, "alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableLowAlerts, "low_alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableHighAlerts, "high_alerts_disabled_until");

    setOnClickListenerOnClearDisabledButton(clearDisabled, "alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearLowDisabled, "low_alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearHighDisabled, "high_alerts_disabled_until");
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:40,代码来源:SnoozeActivity.java

示例12: startAlert

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
public synchronized  void startAlert(Context ctx, boolean trendingToAlertEnd, AlertType newAlert, String bgValue , boolean start_snoozed)  {
    Log.d(TAG, "startAlert called, Threadid " + Thread.currentThread().getId());
    if (trendingToAlertEnd) {
        Log.d(TAG, "startAlert: This alert is trending to it's end will not do anything");
        return;
    }

    stopAlert(ctx, true, false);

    long nextAlertTime = newAlert.getNextAlertTime(ctx);

    ActiveBgAlert.Create(newAlert.uuid, start_snoozed, nextAlertTime);
    if (!start_snoozed) VibrateNotifyMakeNoise(ctx, newAlert, bgValue, newAlert.override_silent_mode, 0);
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:15,代码来源:AlertPlayer.java

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

示例14: addListenerOnButton

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
public void addListenerOnButton() {
    buttonSnooze = (Button)findViewById(R.id.button_snooze);

    //low alerts
    disableLowAlerts = (Button)findViewById(R.id.button_disable_low_alerts);
    clearLowDisabled = (Button)findViewById(R.id.enable_low_alerts);

    //high alerts
    disableHighAlerts = (Button)findViewById(R.id.button_disable_high_alerts);
    clearHighDisabled = (Button)findViewById(R.id.enable_high_alerts);

    //all alerts
    disableAlerts = (Button)findViewById(R.id.button_disable_alerts);
    clearDisabled = (Button)findViewById(R.id.enable_alerts);
    sendRemoteSnooze = (Button)findViewById(R.id.send_remote_snooze);

    buttonSnooze.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            int intValue = getTimeFromSnoozeValue(snoozeValue.getValue());
            AlertPlayer.getPlayer().Snooze(getApplicationContext(), intValue);
            Intent intent = new Intent(getApplicationContext(), Home.class);
            if (ActiveBgAlert.getOnly() != null) {
                startActivity(intent);
            }
            finish();
        }

    });
    showDisableEnableButtons();

    setOnClickListenerOnDisableButton(disableAlerts, "alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableLowAlerts, "low_alerts_disabled_until");
    setOnClickListenerOnDisableButton(disableHighAlerts, "high_alerts_disabled_until");

    setOnClickListenerOnClearDisabledButton(clearDisabled, "alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearLowDisabled, "low_alerts_disabled_until");
    setOnClickListenerOnClearDisabledButton(clearHighDisabled, "high_alerts_disabled_until");
}
 
开发者ID:NightscoutFoundation,项目名称:xDrip,代码行数:39,代码来源:SnoozeActivity.java

示例15: startAlert

import com.eveningoutpost.dexdrip.Models.ActiveBgAlert; //导入依赖的package包/类
public synchronized  void startAlert(Context ctx, boolean trendingToAlertEnd, AlertType newAlert, String bgValue )  {
    Log.d(TAG, "startAlert called, Threadid " + Thread.currentThread().getId());
    if (trendingToAlertEnd) {
        Log.d(TAG,"startAlert: This alert is trending to it's end will not do anything");
        return;
    }

    stopAlert(ctx, true, false);

    long nextAlertTime = newAlert.getNextAlertTime(ctx);
    ActiveBgAlert.Create(newAlert.uuid, false, nextAlertTime );
    Vibrate(ctx, newAlert, bgValue, newAlert.override_silent_mode, 0);
}
 
开发者ID:StephenBlackWasAlreadyTaken,项目名称:xDrip-Experimental,代码行数:14,代码来源:AlertPlayer.java


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