0

这就是我正在处理的事情。

我有一个与我的 Android 应用程序关联的小部件,我想每 10 分钟更新一次(当前使用 AlarmManager),仅当屏幕打开时。如果屏幕关闭,则挂起意图的警报将被取消。一旦屏幕再次打开,我会检查上次更新和当前时间是否相差 10 分钟或更多,如果是,我会发送广播来更新小部件。

发生的事情和问题是挂起的 Intent 的警报可能没有被取消(可能),并且当屏幕关闭时,对挂起的所有警报执行小部件更新。

以下是一些代码片段。

@Override
public void onReceive(Context context, Intent intent) {
        check_intent = intent.getAction();

            if(check_intent.equals("android.appwidget.action.APPWIDGET_UPDATE")){

                 mAppPreferences = PreferenceManager.getDefaultSharedPreferences(context);
                 int saved_num_widgets = mAppPreferences.getInt(NUM_WIDGETS, 0);
        /*Check if there is atleast one widget on homescreen*/       
                 if (saved_num_widgets>0){
                        boolean check = CheckScreenOn.check_screen_on(context);
/*Check if Screen is ON*/
                            if(check == true){
                                                Intent widgetUpdate = new Intent(context, MyWidget.class);
                                                widgetUpdate.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
                                                alarms = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
                                                newPending = PendingIntent.getBroadcast(context, 0, widgetUpdate,0);
                                                alarms.set(AlarmManager.ELAPSED_REALTIME, SystemClock.elapsedRealtime()+ PERIOD, newPending);
                                                context.startService(new Intent(context, UpdateService.class));
                            }
                            else{
                                alarms.cancel(newPending);
/*Screen is OFF no point updating the widget, cancel Alarms and do nothing*/
                            }
                     }
                     else{
                            int duration = Toast.LENGTH_LONG;
                            CharSequence text = "Please place My Widget on your home screen to keep earning money.";
                            Toast toast = Toast.makeText(context, text, duration);
                            toast.show();
                     }
                    }   
                if(check_intent.equals("android.appwidget.action.APPWIDGET_ENABLED")){
                    this.onEnabled(context);
                }
                if(check_intent.equals("android.appwidget.action.APPWIDGET_DELETED")){
                    this.onDeleted(context);
                }
                if(check_intent.equals("android.appwidget.action.APPWIDGET_DISABLED")){
                    this.onDisabled(context);
                }


    }

这是接收 SCREEN_ON 广播并在当前时间 - 上次小部件更新 >= 10 分钟时发送小部件更新请求的 BroadcastReceiver。

registerReceiver(new BroadcastReceiver() {

              @Override
              public void onReceive(Context context, Intent intent) {
                // ... 
                long update_interval = mAppPreferences.getLong(LASTUPDATETIME, 0);
                long curtimemillis = System.currentTimeMillis();
                long calculate_interval = curtimemillis - update_interval;
                if(calculate_interval >= PERIOD){
                    int saved_num_widgets = mAppPreferences.getInt(NUM_WIDGETS, 0);

                    if (saved_num_widgets>0){

                               alarms.cancel(newPending);
                            Intent widgetUpdate = new Intent(context, MyWidget.class);
                            widgetUpdate.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
                            context.sendBroadcast(widgetUpdate);
                        }

                    }

                  }
                }, new IntentFilter(Intent.ACTION_SCREEN_ON));

假设最后一次更新发生在上午 10:00,屏幕关闭了 30 分钟。当屏幕打开时,小部件会立即更新为pendingIntent 存储的所有警报。我希望小部件更新仅在屏幕再次亮起时发生一次。

最初,我了解到当设备从空闲状态唤醒时会触发 AlarmManager.ELAPSED_REALTIME。

我不知道为什么闹钟取消不起作用。其他一切都按预期工作。

顺便说一句,我已经对各种设备上的 10 分钟小部件更新进行了性能测试,这对可用资源一点也不紧张。此外,提供的服务甚至不会出现在 Android 设备的电池使用监视器中。

任何帮助深表感谢。

4

1 回答 1

0

我也见过这个。将其更改为使用接收 SCREEN_OFF 或 SCREEN_ON 并手动停止/启动警报服务的广播接收器。

不是您可能想要的答案,抱歉:-)

于 2011-03-15T16:14:39.843 回答