Home | History | Annotate | Download | only in am
      1 /*
      2  * Copyright (C) 2017 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License
     15  */
     16 
     17 package android.server.am;
     18 
     19 import android.app.Activity;
     20 import android.view.WindowManager;
     21 
     22 public class TurnScreenOnWithRelayoutActivity extends Activity {
     23 
     24     @Override
     25     protected void onStart() {
     26         super.onStart();
     27         getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
     28                 | WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
     29     }
     30 
     31     @Override
     32     protected void onStop() {
     33         super.onStop();
     34 
     35         // This is to force a relayout, specifically with insets changed. When the insets are
     36         // changed, it will trigger a performShow that could turn the screen on.
     37         getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
     38     }
     39 }
     40