其他分享
首页 > 其他分享> > Android:隐藏标题栏的问题

Android:隐藏标题栏的问题

作者:互联网

我想在我的应用程序的所有活动中隐藏标题栏.为此,我在标记中添加了以下属性:

android:theme="@android:style/Theme.NoTitleBar"

标题栏现在已隐藏,但问题是我的应用程序看起来很奇怪.

之前:

http://imageshack.us/a/img831/6905/screenshot1355296053406.png

使用noTitleBar属性:

http://imageshack.us/a/img211/581/screenshot1355295921669.png

看起来对比度较低..

如果noTitleBar属性位于应用程序标记或每个活动标记中,则没有区别.

希望你能解决我的问题.

解决方法:

在onCreate()活动中写下:

this.requestWindowFeature(Window.FEATURE_NO_TITLE);

标签:android,titlebar,android-manifest,android-titlebar
来源: https://codeday.me/bug/20190517/1123636.html