1

我试图实现一些东西 -

屏幕关闭(暗)。我希望能够将屏幕唤醒 15 秒(通过事件/广播或其他东西......),之后,如果没有用户干预,屏幕应该再次关闭(黑暗) .

我怎样才能做到这一点?

4

2 回答 2

2

您可以使用警报管理器。

您可以使用以下行触发警报:

Alarm Manager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);

pendingServiceIntent = PendingIntent.getService(this.getApplicationContext(), 0,
            new Intent(this.getApplicationContext(), DataCollectionService.class), 0);

long intervalInMinutes = 5; // will wake you up every 5 minutes
long triggerAtTime = System.currentTimeMillis() + 1000*60*intervalInMinutes;
alarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, triggerAtTime, pendingServiceIntent);

就我而言,我正在触发一项服务。您可以扩展 BroadcastReceiver 或任何您想要的。然后,您将使用 WakeLock 点亮屏幕至少 15 秒:

powerManager = (PowerManager) getSystemService(POWER_SERVICE);
wL = powerManager.newWakeLock(PowerManager.FULL_WAKE_LOCK, "LocRepTask");
wL.acquire(); // forces processor to stay awake
// do your stuff.....
wl.release();  // processor no longer awake because of you

您将需要WAKE_LOCK在 android manifest 中获得许可。

于 2012-04-25T23:56:07.963 回答
1

为此,您必须有一个正在运行的 Service 持有部分唤醒锁。然后,该服务可以在您想要的任何时间间隔向广播接收器发出意图并唤醒屏幕。不过,就像评论者所建议的那样,这意味着 CPU 必须保持开启,即使设备屏幕关闭,这将比待机更快地耗尽电池电量。(这本身并不是不这样做的理由,只是说你必须权衡考虑)

PowerManager API 可以轻松满足您的其他要求 - 希望这足以让您摆脱困境。祝你好运!

于 2012-04-25T21:49:06.943 回答