Skip to content

Instantly share code, notes, and snippets.

@davidonet
Created April 10, 2012 08:51
Show Gist options
  • Save davidonet/2349467 to your computer and use it in GitHub Desktop.
Save davidonet/2349467 to your computer and use it in GitHub Desktop.
FullScreen Hack Android
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