android项目运行出来,在手机上会显示黑色的标题栏,怎么能去掉它。就是下面图中的Fujin的部分

2024-11-15 00:01:55
推荐回答(2个)
回答1:

设置安卓的主题,在androidmainfest.xml文件中有一个theme属性,可以选择一个
android:theme="@android:style/Theme.NoTitleBar" 不显示应用程序标题栏
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 不显示应用程序标题栏,并全屏

回答2:

将application的holo设置为theme 应该可行