标题栏去不掉问题

来源:互联网 发布:外汇通行情软件 编辑:程序博客网 时间:2024/06/07 19:59
在setContentView前添加代码:
requestWindowFeature(Window.FEATURE_NO_TITLE);
未能将标题去掉,
后来在AndroidManifest.xml中添加:
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
顺利把标题栏去掉了。
原创粉丝点击