此问题与前一个问题有关:Codename One - Notify something to the user every five minutes
我发现,当应用在后台或智能手机闲置时,UITimer
无效。
考虑以下代码(在Android上测试):
public void start() {
if (current != null) {
current.show();
return;
}
Form hi = new Form("Five minutes alert", BoxLayout.y());
hi.add(new Label("Alert every five minutes..."));
Button button = new Button("Go to background");
button.addActionListener(l -> {Display.getInstance().minimizeApplication();});
hi.add(button);
hi.show();
sound();
UITimer.timer(1000 * 60 * 5, true, () -> {
sound();
});
Display.getInstance().minimizeApplication();
}
private void sound() {
try {
Media m = MediaManager.createMedia((Display.getInstance().getResourceAsStream(getClass(), "/bell.mp3")), "audio/mpeg");
m.play();
} catch (IOException err) {
Log.e(err);
}
}
问题在于,当应用程序打开时,bell.mp3
被播放,之后应用程序自动进入后台,几秒钟后智能手机就会空闲(这意味着黑屏)(根据Android设置) ,五分钟后sound()
方法不会被称为。当我唤醒智能手机(按下电源按钮并在屏幕上移动一根手指)并且只有在按下“主页”按钮并将应用程序放在前景后才会调用它。 如果应用已经在前台,但智能手机处于空闲状态(即用户未使用时正常状态),则问题相同。
所以,这是我的问题:我需要执行sound()
每五分钟自动播放一次声音(或者做其他事情)。这样做的正确方法是什么?
答案 0 :(得分:1)
EDT不在后台运行,因此没有UITimer
没有callSerially
等。如果我们运行EDT,我们会消耗电池资源,操作系统会杀死应用程序,因此不会你想要的东西。
您可能正在寻找的是define a DJANGO_SETTINGS_MODULE environment variable pointing to that specific yourdomain_settings.py file中讨论的背景音乐。