如何删除android中的通知面板

时间:2016-06-05 10:55:46

标签: android

如何制作简单的Android应用程序,可以禁用通知面板的所有功能

 View decorView = getWindow().getDecorView();
// Hide the status bar.
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
// Remember that you should never show the action bar if the
// status bar is hidden, so hide that too if necessary.
ActionBar actionBar = getActionBar();
actionBar.hide();

0 个答案:

没有答案