Answers for "how to on and off screen in android using android studio"

0

android studio opening off screen

1. Use <ALT>-<TAB> to cycle throught the application, or select it in the toolbar
2. Press <ALT>-<SPACE> to open the move menu
3. Use ‘M’ to move it
Posted by: Guest on February-10-2022
-1

how to stop screen going off android studio

getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);

to disable keep screen on:
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
Posted by: Guest on August-23-2020

Code answers related to "how to on and off screen in android using android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language