在Android手机中我们可以看到顶部包含信号指示器,电池充电指示器等的图标。当我们点击任何应用程序时,这些指示器也会随着我们的应用程序的活动一起显示。有没有办法在运行应用程序时删除这些指标???
谢谢你, Yugandhar
答案 0 :(得分:7)
当然,您可以在清单文件中使用此行删除它:
将此行添加到清单中的每个活动代码。
android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen"
(it will set your current wallpaper as background of your activity with no Titlebar shown and all your component would be mounted on the screen)
你也可以试试这个:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
答案 1 :(得分:4)
以编程方式隐藏标题:
requestWindowFeature(Window.FEATURE_NO_TITLE);
用法:在setContentView
之前的onCreate中public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.splash);
全屏:无状态栏(在setContentView之后使用)
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);