试图弄清楚这一点。我有一个应用程序,它在单独service
的调用中运行倒计时startsForeground
,显示通知。我从一个按钮启动倒计时服务:
Intent i = new Intent(getApplicationContext(), PomoService.class);
i.putExtra("EXTRA_MESSENGER", new Messenger(handler));
startService(i);
我用 更新 UI handler
,它接收到包数据,告诉倒计时还剩多少毫秒,通过onTick()
方法中的消息发送:
Messenger messenger = (Messenger)extras.get("EXTRA_MESSENGER");
Message msg = new Message();
Bundle b = new Bundle();
b.putLong("remainingTime", millisUntilFinished);
msg.setData(b);
try {
messenger.send(msg);
} catch (RemoteException e) {
Log.i("error", "error");
}
在活动中:
private Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
long sentTime = msg.getData().getLong("remainingTime");
textCountdownMin.setText(String.format("%02d", (sentTime/1000)/60));
textCountdownSec.setText(":" + String.format("%02d", (sentTime/1000)%60));
}
};
整个设置工作正常,唯一的问题是,如果用户点击后退按钮或从最近的应用程序列表中滑动应用程序,然后从抽屉或正在进行的通知中重新打开它,则文本不再更新。不过,倒计时仍在进行中,因为我可以从仍然显示的通知以及我使用 AlarmManager 唤醒屏幕的事实中看到它,并且它已正确启动。
关于我应该采取什么措施的任何线索?