gpt4 book ai didi

java - 动态改变启动画面的背景颜色

转载 作者:行者123 更新时间:2023-12-02 10:53:20 25 4
gpt4 key购买 nike

我正在使用以下文章为我的应用程序制作启动屏幕(不为其执行 Activity ):

https://www.bignerdranch.com/blog/splash-screens-the-right-way/

效果很好。不过,我想根据 SharedPreferences 值更改背景颜色。我知道我不能直接更改 xml 背景颜色值。因此,我想知道是否有其他方法来设置背景颜色或将其映射到 SharedPrefences 值。

谢谢。

编辑:我想避免为启动屏幕创建新的 Activity 。澄清我目前正在使用的东西。我有:

android:theme="@style/SplashTheme"

在 list 上设置应用程序主题。然后,在 MainActivity 上我使用:

setTheme(R.style.AppTheme);

最佳答案

共享首选项实现:

private SharedPreferences pref;

然后加载

pref = this.getSharedPreferences("myAppPref",MODE_PRIVATE);

现在如果用户改变颜色,你必须像这样保存

pref.edit().putString("splashColor","the new color hex here ex: #FFFFFF").commit();

当用户现在重新打开(或第一次打开)时,您必须从首选项加载它并显示它:

String color= pref.getString("splashColor","your default color here ex : #000000");

在可变颜色中会有您的颜色十六进制代码

现在在splash_activity.xml中:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/root"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<ImageView
android:id="@+id/imageView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
app:srcCompat="@mipmap/ic_launcher" />
</RelativeLayout>

现在在 SplashActivity.java 中创建:

setContentView(R.layout.splash_activity.xml);
mRelativeLayout = findViewById(R.id.root);
pref = this.getSharedPreferences("myAppPref",MODE_PRIVATE);
String color = pref.getString("splashColor","your default color here ex : #000000");
mRelativeLayout.setBackgroundColor(Color.parseColor(color));

Handler handler = new Handler();
int Delay = 3000; // choose ur own delay

handler.postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
},Delay);

注意:当您想要保存或更改颜色时使用此方法:pref.edit().putString("splashColor","这里的新颜色十六进制例如:#FFFFFF").commit();

关于java - 动态改变启动画面的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51989763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com