Created
April 10, 2012 08:51
-
-
Save davidonet/2349467 to your computer and use it in GitHub Desktop.
FullScreen Hack Android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
Process proc = Runtime.getRuntime().exec(new String[] { | |
"su", "-c", "service call activity 79 s16 com.android.systemui" | |
} | |
); | |
try | |
{ | |
proc.waitFor(); | |
} | |
catch (java.lang.InterruptedException e) | |
{ | |
} | |
} | |
catch(java.io.IOException e) | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment