我的Splash Activity 不会更改,只有在我将名称更改为另一个时,它才会更改。

例如:
SplashActivity ”-从修改开始

如果将主题更改为另一种颜色,则需要将 Activity 重命名为:
SplashActivityy ”或其他名称。

如果我返回到名称“ SplashActivity ”,则修改将返回到以后。

已经格式化并清除了android studio的缓存,这无济于事!

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.example.cobaiascreen">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:name=".App"
        tools:ignore="GoogleAppIndexingWarning">
        <activity
            android:name=".SplashActivity"
            android:theme="@style/SplashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

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

</manifest>

SplashActivity.java
package com.example.cobaiascreen;

import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;

public class SplashActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //Hiding Title bar of this activity screen */
        getWindow().requestFeature(Window.FEATURE_NO_TITLE);
        //Making this activity, full screen */
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

        Intent intent = new Intent(this, MainActivity.class);
        startActivity(intent);
        finish();
    }
}

App.java
package com.example.cobaiascreen;

import android.app.Application;
import android.os.SystemClock;

import java.util.concurrent.TimeUnit;

public class App extends Application {

    @Override
    public void onCreate() {
        super.onCreate();

        // Don't do this! This is just so cold launches take some time
        SystemClock.sleep(TimeUnit.SECONDS.toMillis(3));
    }
}

Styles.xml
<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
        <item name="android:windowBackground">@drawable/background_splash</item>
    </style>

</resources>

background_splash.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item
        android:drawable="@color/colorPrimaryDark"/>

    <item>
        <bitmap
            android:gravity="center"
            android:src="@drawable/icon"/>
    </item>

</layer-list>

编辑:和我的问题一样:
Splash Theme is not changing anymore

编辑2:
经过一阵烦躁,我没有发现与互联网相关的散步,我在一个线程中问了一个问题,以了解我的代码中发生了什么。

已经尝试清除缓存,重新创​​建应用程序,清除文件缓存,已经在android studio中进行了所有操作。

一段时间后,我发现正在谈论重新启动应用程序的事情似乎发生了变化。

但是我不希望用户安装我的应用程序而必须重新启动应用程序以显示主题更改。我怎么解决这个问题?

最佳答案

当我深入分析代码时,我没有发现代码中出现“您在说什么”的原因。所以根据我的原因可能是:

也许您拥有多个可绘制文件夹,并且设备特定的可绘制文件夹中存在文件 background_splash.xml 文件,该文件可能是drawable-xxhdpi ,也可能是drawable中的

&很可能是您在drawable中进行了与您的设备无关的更改。

因此,请进行验证,样式也相同(如果适用)。

您可以采取的其他措施是

  • 禁用即时运行。
  • delete data之后卸载应用程序,然后
    从手机的“应用程序信息”>“存储选项”中选择clear cache,然后再次安装。

  • 希望以上任何一种技术都能为您服务。

    09-26 09:12