我对Android开发很新,并希望在顶部删除appName的空间,如图所示(BasicCalculator所在的区域)。我想能够用不同的颜色定制它,并在那里做其他的东西。怎么做的?
谢谢
答案 0 :(得分:1)
在onCreate()方法中使用此代码。
//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//Remove notification bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);