本文整理汇总了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();
}
示例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();
}
示例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);
}
示例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);
}
示例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);
}