我有一个项目列表,我想要每天发布一个通知。但不是在用户可能睡觉的半夜。
可能是在8点之后的任何时间。
我知道我需要使用AlarmManager来使用它。
我对使用AlarmManager非常熟悉。
我只是不知道我的
AlarmManager.setRepeating();
方法看起来就像我想要做的那样。
我该怎么做?
答案 0 :(得分:3)
您是否尝试阅读文档?
一些提示。获得当前日期后,您可以将其转换为超过纪元时间的毫秒数。为了弄清楚1小时内的时间,你必须将1h转换为毫秒。
My time = x;
其中x是以纪录时间为单位的特定日期/时间。
如果我有兴趣将1h转换为毫秒,那么我会这样做(1000ms = 1s)
1h = 60m = 60 * 60 = 3600s = 3,600,000ms
所以,
x = x+3,600,000
这会将x偏移一小时。
你可以在AlarmManager中使用一堆常量。
示例命令:
AlarmManager.setRepeating((type), (specific date in ms after epoch), (repeating interval), (The intent to fire))
答案 1 :(得分:3)
这是有效的代码。它每10分钟唤醒一次CPU。
添加到Manifest.xml:
...
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
...
<receiver android:process=":remote" android:name="Alarm"></receiver>
...
代码:
public class Alarm extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "YOUR TAG");
wl.acquire();
// Put here YOUR code.
Toast.makeText(context, "Alarm !!!!!!!!!!", Toast.LENGTH_LONG).show(); // For example
wl.release();
}
public void SetAlarm(Context context)
{
AlarmManager am=(AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent i = new Intent(context, Alarm.class);
PendingIntent pi = PendingIntent.getBroadcast(context, 0, i, 0);
am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + (1000 * 60 * 10), pi); // Millisec * Second * Minute
}
}