启动画面上的标题栏

Title Bar On Splash Screen

请问有什么方法可以隐藏标题栏,使其不显示在闪屏页面上吗? 我尝试通过设计页面更改主题,

尝试过

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


requestWindowFeature(Window.FEATURE_NO_TITLE);

getWindow().setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

但是标题栏还在,有什么办法可以隐藏吗?

此致。

设置android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 在您的 AndroidManifest.xml 文件中,如下所示。

 <activity
        android:name=".activity.SplashActivity"
        android:screenOrientation="portrait"
        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>

真的很简单!只需在 Activity class 中的 "setContentView" 之前添加此代码。 requestWindowFeature(Window.FEATURE_NO_TITLE);

此致, 加布里埃尔

在 setContentView(R.layout.test_activity);

上面添加两行
 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
    getActionBar().hide();
    setContentView(R.layout.test_activity);

对于 AppCompat,以下解决方案对我有用:

在您的 styles.xml 中添加没有操作栏的新主题样式并设置 parent="Theme.AppCompat.NoActionBar"

<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">

    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimary</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="android:windowBackground">@color/colorPrimary</item>

</style>


现在在 androidManifest.xml

中为启动画面 activity 实现相同的主题样式
<activity
        android:name=".ActivityName"
        android:theme="@style/SplashTheme"> // apply splash them here 

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
</activity>

这是结果: