Android-让设备保持唤醒(激活)状态

Keeping the Device Awake

To avoid draining the battery, an Android device that is left idle quickly falls asleep. However, there are times when an application needs to wake up the screen or the CPU and keep it awake to complete some work.

The approach you take depends on the needs of your app. However, a general rule of thumb is that you should use the most lightweight approach possible for your app, to minimize your app's impact on system resources. The following sections describe how to handle the cases where the device's default sleep behavior is incompatible with the requirements of your app.

为了避免电池尿崩,Android会在没有任务的时候快速进入睡眠状态。然而有时候应用需要保持激活状态。

你的需求决定了你选择的方法。一般来说,尽可能选择尽量轻量的方法满足你的需求。下面几个选项讲述了如何选择这些方法。

Keep the Screen On

Certain apps need to keep the screen turned on, such as games or movie apps. The best way to do this is to use the FLAG_KEEP_SCREEN_ON in your activity (and only in an activity, never in a service or other app component). For example:

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
}

The advantage of this approach is that unlike wake locks (discussed in
Keep the CPU On), it doesn't require special permission, and the platform correctly manages the user moving between applications, without your app needing to worry about releasing unused resources.
Another way to implement this is in your application's layout XML file, by using the android:keepScreenOn

attribute:


    ...

Usingandroid:keepScreenOn="true" is equivalent to using FLAG_KEEP_SCREEN_ON. You can use whichever approach is best for your app. The advantage of setting the flag programmatically in your activity is that it gives you the option of programmatically clearing the flag later and thereby allowing the screen to turn off.

Note:You don't need to clear theFLAG_KEEP_SCREEN_ONflag unless you no longer want the screen to stay on in your running application (for example, if you want the screen to time out after a certain period of inactivity). The window manager takes care of ensuring that the right things happen when the app goes into the background or returns to the foreground. But if you want to explicitly clear the flag and thereby allow the screen to turn off again, useclearFlags():getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON).

简而言之,通过设置FLAG_KEEP_SCREEN_ON标记来是屏幕保持常亮,这是一种比较轻量级的方法,系统会根据App是否在前台决定这个设置是否生效,如果是一般阅读类App,电影App推荐使用这个。

Keep the CPU On

If you need to keep the CPU running in order to complete some work before the device goes to sleep, you can use aPowerManagersystem service feature called wake locks. Wake locks allow your application to control the power state of the host device.
Creating and holding wake locks can have a dramatic impact on the host device's battery life. Thus you should use wake locks only when strictly necessary and hold them for as short a time as possible. For example, you should never need to use a wake lock in an activity. As described above, if you want to keep the screen on in your activity, useFLAG_KEEP_SCREEN_ON.
One legitimate case for using a wake lock might be a background service that needs to grab a wake lock to keep the CPU running to do work while the screen is off. Again, though, this practice should be minimized because of its impact on battery life.
To use a wake lock, the first step is to add theWAKE_LOCKpermission to your application's manifest file:


If your app includes a broadcast receiver that uses a service to do some work, you can manage your wake lock through aWakefulBroadcastReceiver, as described inUsing a WakefulBroadcastReceiver. This is the preferred approach. If your app doesn't follow that pattern, here is how you set a wake lock directly:

PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE);
WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
        "MyWakelockTag");
wakeLock.acquire();

To release the wake lock, callwakelock.release(). This releases your claim to the CPU. It's important to release a wake lock as soon as your app is finished using it to avoid draining the battery.

Using WakefulBroadcastReceiver

Using a broadcast receiver in conjunction with a service lets you manage the life cycle of a background task.AWakefulBroadcastReceiveris a special type of broadcast receiver that takes care of creating and managing aPARTIAL_WAKE_LOCKfor your app. AWakefulBroadcastReceiverpasses off the work to aService(typically anIntentService), while ensuring that the device does not go back to sleep in the transition. If you don't hold a wake lock while transitioning the work to a service, you are effectively allowing the device to go back to sleep before the work completes. The net result is that the app might not finish doing the work until some arbitrary point in the future, which is not what you want.
The first step in using aWakefulBroadcastReceiveris to add it to your manifest, as with any other broadcast receiver:


The following code starts MyIntentService with the method startWakefulService(). This method is comparable tostartService(), except that theWakefulBroadcastReceiveris holding a wake lock when the service starts. The intent that is passed withstartWakefulService()holds an extra identifying the wake lock:

public class MyWakefulReceiver extends WakefulBroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {

        // Start the service, keeping the device awake while the service is
        // launching. This is the Intent to deliver to the service.
        Intent service = new Intent(context, MyIntentService.class);
        startWakefulService(context, service);
    }
}

When the service is finished, it callsMyWakefulReceiver.completeWakefulIntent()to release the wake lock. ThecompleteWakefulIntent()method has as its parameter the same intent that was passed in from theWakefulBroadcastReceiver:

public class MyIntentService extends IntentService {
    public static final int NOTIFICATION_ID = 1;
    private NotificationManager mNotificationManager;
    NotificationCompat.Builder builder;
    public MyIntentService() {
        super("MyIntentService");
    }
    @Override
    protected void onHandleIntent(Intent intent) {
        Bundle extras = intent.getExtras();
        // Do the work that requires your app to keep the CPU running.
        // ...
        // Release the wake lock provided by the WakefulBroadcastReceiver.
        MyWakefulReceiver.completeWakefulIntent(intent);
    }
}

使用WAKE_LOCK保持CPU运算,但是一般不推荐使用,除非你有非要完成的任务。绝对不要在Activity中使用,一般在Service中使用即可。具体使用方法已经很清楚了,不译了。

你可能感兴趣的:(Android-让设备保持唤醒(激活)状态)