我想在 android 中禁用状态栏或通知栏。我android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
用于禁用它,但它也使我的标题栏也禁用。我怎样才能只禁用状态栏?
5 回答
在 onCreate 函数中使用以下代码创建一个基本活动,并每次扩展该活动
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
或者
您可以在每个活动中使用上述代码,以使标题栏可见但状态栏不可见。
编辑:只要确保你没有在你的 Android 清单中定义任何主题。
在清单中使用全屏主题,然后您可以定义一个单独的布局,其中包含您的标题,然后在应用程序的每个布局上使用 include 标签。
这是一个非常好的教程,可以帮助您完成工作。
或者看看这个
如果您想隐藏它们,您可以通过代码或“AndroidManifest.xml”中的主题设置来实现。
要隐藏应用程序的标题栏,您可以使用预定义的样式 android:theme=”@android:style/Theme.NoTitleBar”。如果您还想隐藏应用程序的状态栏,请使用 android:theme=”@android:style/Theme.NoTitleBar.Fullscreen”。例如在我的 Android 开发教程中:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.vogella.android.temperature"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Convert"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="9" />
</manifest>
这肯定会帮助你。
谢谢 :)
- 无标题栏无状态栏,显示全屏安卓(多用于游戏)
res->values->styles.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppBaseTheme" parent="android:Theme.NoTitleBar.Fullscreen">
<!-- API 11 theme customizations can go here. -->
</style>
</resources>
应用程序清单.xml:
:
:
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppBaseTheme"
>
:
:
结果:全屏没有标题栏和状态栏
没有标题栏只显示电话状态栏相同的文件只是删除“.Fullscreen”
res->values->styles.xml:
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="AppBaseTheme" parent="android:Theme.NoTitleBar"> <!-- API 11 theme customizations can go here. --> </style> </resources>
结果:它将仅显示状态栏而没有完整的标题栏
- 显示状态栏和标题栏
res->values->styles.xml:
<style name="AppBaseTheme">
结果:
在清单文件中尝试这个:
android:theme="@android:style/Theme.Black.NoTitleBar"