Activity 主题没有改变
Activity Theme is not changing
我的 Splash activity 没有改变,只有当我将名称更改为另一个时它才会改变。
例如:
“SplashActivity”- 从修改开始
如果我将主题更改为另一种颜色,我需要将 activity 重命名为:
“SplashActivityy”或其他名称。
如果我回到名称“SplashActivity”,修改会回到后面。
已经格式化并清除了 android 工作室的缓存,这没有帮助!
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 中完成所有操作。
过了一会儿,我发现有东西在重新启动应用程序,但似乎发生了变化。
但我不希望用户安装我的应用程序必须重新启动应用程序才能显示主题中的更改。我该如何解决这个问题?
试试这个:
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="android:windowBackground">@drawable/background_splash</item>
</style>
你确定android.intent.action.MAINACTIVITY
存在吗?
android studio 的增量构建系统 "Instant Run" 存在问题。这就是为什么他们引入了 new/improved 称为 "Apply Changes" 的增量构建作为 Marble 项目的结果。它在 android 工作室版本 3.5 中可用。请参阅文档 here
尝试将 android:allowBackup="true"
更改为 android:allowBackup="false"
。安装应用程序。然后彻底卸载。重新安装。看题目。然后更改主题并重新安装-检查主题是否已更改。
当我深入分析代码时,我在代码中找不到 "What you are saying" 的原因。所以根据我的说法可能是一个原因:
可能 您有多个可绘制文件夹,并且文件 background_splash.xml
存在于您设备特定的可绘制文件夹中,这可能成为 drawable-xxhdpi
并且 在 drawable
& 很可能您正在对 drawable
进行与您的设备无关的更改。
所以请验证一下,样式也一样"if applicable"。
您可以采取的其他措施是
- 禁用即时 运行。
- 在
delete data
之后卸载该应用,并且
clear cache
来自 phone 的应用程序信息> 存储选项,然后重新安装。
希望以上任何一种技术对您有用。
我的 Splash activity 没有改变,只有当我将名称更改为另一个时它才会改变。
例如: “SplashActivity”- 从修改开始
如果我将主题更改为另一种颜色,我需要将 activity 重命名为: “SplashActivityy”或其他名称。
如果我回到名称“SplashActivity”,修改会回到后面。
已经格式化并清除了 android 工作室的缓存,这没有帮助!
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 中完成所有操作。
过了一会儿,我发现有东西在重新启动应用程序,但似乎发生了变化。
但我不希望用户安装我的应用程序必须重新启动应用程序才能显示主题中的更改。我该如何解决这个问题?
试试这个:
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="android:windowBackground">@drawable/background_splash</item>
</style>
你确定android.intent.action.MAINACTIVITY
存在吗?
android studio 的增量构建系统 "Instant Run" 存在问题。这就是为什么他们引入了 new/improved 称为 "Apply Changes" 的增量构建作为 Marble 项目的结果。它在 android 工作室版本 3.5 中可用。请参阅文档 here
尝试将 android:allowBackup="true"
更改为 android:allowBackup="false"
。安装应用程序。然后彻底卸载。重新安装。看题目。然后更改主题并重新安装-检查主题是否已更改。
当我深入分析代码时,我在代码中找不到 "What you are saying" 的原因。所以根据我的说法可能是一个原因:
可能 您有多个可绘制文件夹,并且文件 background_splash.xml
存在于您设备特定的可绘制文件夹中,这可能成为 drawable-xxhdpi
并且 在 drawable
& 很可能您正在对 drawable
进行与您的设备无关的更改。
所以请验证一下,样式也一样"if applicable"。
您可以采取的其他措施是
- 禁用即时 运行。
- 在
delete data
之后卸载该应用,并且clear cache
来自 phone 的应用程序信息> 存储选项,然后重新安装。
希望以上任何一种技术对您有用。