使用代码禁用黑莓的睡眠模式

发布于 2025-01-01 11:29:16 字数 488 浏览 0 评论 0 原文

如何使用 J2ME 防止黑莓应用程序进入睡眠模式?

我已经看到此建议执行 密钥注入 还请阅读此文档

但我不确定第二种方法是否适用于 J2ME。

如何使用 J2ME 在黑莓中有效地完成此操作?

How to prevent the app from going to sleep mode in blackberry using J2ME?

I have seen this suggestion to do a Key Injection also read this docs from Native SDK.

But I am not sure whether the second method works with J2ME.

How can I do this efficently in blackberry with J2ME?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

演多会厌 2025-01-08 11:29:16

我想这或许可以实现...
您可以将键盘事件发送到设备。有关详细信息,请参阅此 防止黑莓进入睡眠模式

I think this may be achieved ...
you can send keyBoard event to the device. For more information see this Prevent BlackBerry From Going Into Sleep Mode.

深府石板幽径 2025-01-08 11:29:16

关于禁用睡眠模式,您可以阅读这篇文章。

为了解决黑莓中的这个问题,我使用了下面的代码:

import net.rim.device.api.system.Backlight;
import net.rim.device.api.util.DateTimeUtilities;

int MAX_BACKLIGHT_TIMEOUT_SECS = 255;

....

Backlight.setTimeout(MAX_BACKLIGHT_TIMEOUT_SECS);
Timer timer_ = new Timer();

timer_.scheduleAtFixedRate(new TimerTask() 
{
    public void run() 
    {
        Backlight.enable(true);
    }
}, 
(MAX_BACKLIGHT_TIMEOUT_SECS - 1) * DateTimeUtilities.ONESECOND, 
(MAX_BACKLIGHT_TIMEOUT_SECS - 1) * DateTimeUtilities.ONESECOND);

About disabling sleep mode, you can read this article.

To solve this problem in blackberry I used code below:

import net.rim.device.api.system.Backlight;
import net.rim.device.api.util.DateTimeUtilities;

int MAX_BACKLIGHT_TIMEOUT_SECS = 255;

....

Backlight.setTimeout(MAX_BACKLIGHT_TIMEOUT_SECS);
Timer timer_ = new Timer();

timer_.scheduleAtFixedRate(new TimerTask() 
{
    public void run() 
    {
        Backlight.enable(true);
    }
}, 
(MAX_BACKLIGHT_TIMEOUT_SECS - 1) * DateTimeUtilities.ONESECOND, 
(MAX_BACKLIGHT_TIMEOUT_SECS - 1) * DateTimeUtilities.ONESECOND);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文