Skip to content

Instantly share code, notes, and snippets.

@wone
Created September 18, 2013 06:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wone/6605432 to your computer and use it in GitHub Desktop.
Save wone/6605432 to your computer and use it in GitHub Desktop.
禁用通知栏disable StatusBar
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
if (hasFocus) return;
Intent intent = new Intent("android.intent.action.CLOSE_SYSTEM_DIALOGS");
intent.putExtra("reason", "globalactions");
sendBroadcast(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment