6

我的问题正是自定义标题栏的 sabe - 系统标题栏会短暂显示?

但我无法达到与@Jerry 在最佳答案中所写相同的结果。“当我切换到使用主题来告诉框架我不想要标题时,问题就消失了,我现在在第一次加载时直接看到自己的标题”

我的代码:

显现:

<?xml version="1.0" encoding="UTF-8"?>
<manifest android:versionCode="3" android:versionName="1.0.2"
package="androidhive.dashboard"     xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application android:icon="@drawable/icone" android:label="@string/app_name">
    <activity 
        android:name="com.androidhive.dashboard.SplashScreen"
        android:theme="@android:style/Theme.NoTitleBar"
        android:label="@string/app_name"
        android:windowSoftInputMode="stateHidden|adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/SplashTheme"
 >

<ImageView
android:id="@+id/splashscreen_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:contentDescription="Splash"
android:scaleType="centerCrop"
android:src="@drawable/splash"
style="@style/SplashTheme" />

</LinearLayout>

风格:

<style name="SplashTheme" parent="@android:Theme.Black">
<item name="android:windowNoTitle">true</item>
<item name="android:background">@drawable/splash</item>
</style>

闪屏.java

public class SplashScreen extends Activity implements Runnable{


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setTheme(R.style.SplashTheme);
    setContentView(R.layout.splashscreen_layout);




    Handler h = new Handler();
    h.postDelayed(this, 15000);
}

@Override
public void run() {
    startActivity(new Intent(this, AndroidDashboardDesignActivity.class));
    finish();
}
}

感谢您的帮助!

4

5 回答 5

9

在 AndroidManifest 上的活动中使用您的主题,而不是在您的布局中!

这将起作用:SplashScreen.java

public class SplashScreen extends Activity{


    private Handler handler;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_launcher);

        final Runnable runnable = new Runnable() {

            @Override
            public void run() {
                   Intent intent=new Intent(SplashScreen.this, AndroidDashboardDesignActivity.class);
                   startActivity(intent);
                   finish();

            }
        };
        handler = new Handler();
        handler.postDelayed(runnable, 5000);


    }

主题.xml

<style name="SplashTheme" parent="android:Theme">
    <item name="android:windowBackground">@null</item>
    <item name="android:windowNoTitle">true</item>
</style>

<style name="SplashTheme.FullScreen" parent="android:Theme">
    <item name="android:windowBackground">@null</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowFullscreen">true</item>
</style>

如果你想隐藏这个主题,第一个主题将为你显示状态栏,也使用第二个主题。我也使用属性 windowBackround 为空,因为之后你将使用你的图像作为你的 RootLayout 的背景,所以它更好不覆盖默认 android 主题用于性能问题的背景颜色。

在你的 splashscreen_layout 你可以使用这个

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/splash"
    android:orientation="vertical" >

</RelativeLayout>

在你的清单中使用这个

<uses-sdk android:minSdkVersion="8" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
    android:icon="@drawable/icone"
    android:label="@string/app_name" >
    <activity
        android:name="com.androidhive.dashboard.SplashScreen"
        android:label="@string/app_name"
        android:theme="@style/SplashTheme"
        android:windowSoftInputMode="stateHidden|adjustResize" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

如果您想在清单中使用第二个主题更改

android:theme="@style/SplashTheme"android:theme="@style/SplashTheme.FullScreen"

一种简单的方法是在布局中删除或设置样式标签,然后android:theme="@android:style/Theme.NoTitleBar"在活动标签下添加清单

于 2012-06-26T21:58:56.440 回答
7

放:

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

在您的应用程序选项卡下,而不是您的活动之一

于 2012-06-26T21:27:02.210 回答
1

基于 Krunal 解决方案,您可以简单地将这一行放在<activity>activity.xml 文件中的标记内:

android:theme="@style/Theme.AppCompat.NoActionBar"

IE替换: android:theme="@style/SplashTheme"

和:

android:theme="@style/Theme.AppCompat.NoActionBar"

里面

<activity
        android:name=".ActivityName"
        android:theme="@style/SplashTheme"> // replace this line

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

给予:

<activity
            android:name=".ActivityName"
            android:theme="@style/Theme.AppCompat.NoActionBar"> // line replaced

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

这使您无需向 styles.xml 添加任何内容。

于 2018-07-07T14:04:30.273 回答
1

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
        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>

这是结果:

在此处输入图像描述

于 2017-12-22T15:00:14.550 回答
0

在你的 MainActivity 中使用这个

 getSupportActionBar().hide();
   getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
于 2017-11-30T11:29:04.823 回答