<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
然后在Activity的onCreate中,在setContentView(R.layout.activity_main);之前添加一行代码:
getSupportActionBar().hide();
就可以了,这样在设计期间也没有顶部的标题栏了,很爽!当然如果,也可以修改为:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
NoActionBar这个主题,连getSupportActionBar().hide();这行代码都不需要了,更爽。