这是我的服务:
public class reminder extends Service{
WakeLock wakeLock;
@Override
public IBinder onBind(Intent arg0) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "MyWakeLock");
wakeLock.acquire();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Timer t=new Timer();
final NotificationManager mgr=(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//check array alarm
final SharedPreferences settings = getSharedPreferences("arrayalarm", 0);
final String sport = settings.getString("sport", "");
final String[] sports=sport.split("#");
TimerTask tt=new TimerTask() {
@Override
public void run() {
if(!(sports[0].equals("")))
for(int i=0;i<sports.length;i++)
{
String[] informatins=sports[i].split(":");
if(new Date().getHours()==Integer.parseInt(informatins[0])&&new Date().getMinutes()==Integer.parseInt(informatins[1]))
{
Notification not=new Notification(R.drawable.sport,"ورزش",new Date().getTime());
PendingIntent pn=PendingIntent.getActivity(getApplicationContext(),0,new Intent(getApplicationContext(),MainActivity.class), 0);
not.setLatestEventInfo(getApplicationContext(), "ورزش", "تو الان باید ورزش کنی", pn);
not.flags=Notification.FLAG_AUTO_CANCEL;
not.vibrate=new long[] {1000l,200l,200l,500l};
not.sound=Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.downloaddlazerdompleted);
mgr.notify(1304,not);
}
}
}
};
t.scheduleAtFixedRate(tt, 0, 60000);
return START_STICKY;
}
@Override
public void onDestroy() {
wakeLock.release();
//Toast.makeText(getApplicationContext(), "god bye main human",Toast.LENGTH_SHORT).show();
super.onDestroy();
}}
我的服务是提醒运动,当特殊时间到来时,我的服务会发送通知 这很好用,但使用了大量的电池。 在设置&gt;设备中的电池时,我的应用程序首先出现在列表中 我怎样才能解决这个问题? 我还想在发送通知时打开屏幕。我怎么能这样做?
答案 0 :(得分:3)
好吧,如果我要编写一个应用程序以尽可能快地耗尽电池,我认为它看起来很像这样。
查看AlarmManager
。你可以更便宜地做类似的事情。
...包括,顺便说一下,打开屏幕。为此,请勿使用通知。而是将意图发送到您的MainActivity。