(1)点击左侧app目录下的manifests,打开AndroidManifest.xml文件,如图:
(2)找到其中为 android:theme="@style/AppTheme" 的语句,如图:
(3)将其修改为 android:theme="@style/Theme.AppCompat.NoActionBar" 即可。
修改代码
在MainActivity里面的onCreate()方法中加入下面一段代码: //去除默认标题栏 ActionBar actionBar=getSupportActionBar(); if(actionBar!=null){ actionBar.hide(); }
就在这样的一个位置: