安卓数独游戏-1-隐藏AndroidActionBar
在开发Android应用时,默认会有如图所示的一栏大大的ActionBar:
如果想要去除ActionBar,只需要在页面中的onCreate
函数中加入getSupportActionBar().hide();
即可,例如:
1 2 3 4 5
| @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getSupportActionBar().hide(); //隐藏ActionBar }
|
结果如下图: