我有一个很大的程序,它有很多表格并且可以使用数据库等。我有一个警报作为我的程序的一部分。当我在 10-20 秒后发出警报并清理内存(在任务管理器中)时,警报会触发一个事件(即使时间尚未到来)。如果我将警报作为独立软件运行 - 它运行完美!
难道警报不能成为程序的一部分吗?或者可能是什么问题?
这就是我使用警报的方式:
MY_Day=1;
Intent myIntent = new Intent(MyService.this, MyAlarmService.class);
pendingIntent = PendingIntent.getService(MyService.this, 0, myIntent, 0);
AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, MY_Houre);
cal.set(Calendar.MINUTE, MY_Minute);
cal.set(Calendar.SECOND, 0);
Total_Time = MY_Day * AlarmManager.INTERVAL_DAY;
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), Total_Time,
pendingIntent);
这是我的服务:
public class MyAlarmService extends Service {
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
Toast toast = Toast.makeText(getApplicationContext(), "MyEvent", Toast.LENGTH_LONG);
toast.setGravity(Gravity.CENTER, 0, 0);
LinearLayout toastView = (LinearLayout) toast.getView();
ImageView imageCodeProject = new ImageView(getApplicationContext());
imageCodeProject.setImageResource(R.drawable.koko);
toastView.addView(imageCodeProject, 0);
toast.show();
}