gpt4 book ai didi

java - 连续逐渐将背景颜色更改为所有颜色

转载 作者:行者123 更新时间:2023-12-01 12:05:21 25 4
gpt4 key购买 nike

我一直在尝试找到一种方法来将相对布局的背景颜色逐渐更改为连续的所有颜色,例如(柔和的蓝色、蓝色、海军蓝、紫色等)我现在只有的代码颜色逐渐从黑色变为白色。我将感谢我可能得到的任何帮助或建议。

这是我现在拥有的代码。

 layOut = (RelativeLayout)findViewById(R.id.relativeLayout2);



new Thread() {
int color = 0;
public void run() {
for (color = 0; color < 255; color++) {
try {
sleep(20);
runOnUiThread(new Runnable() {
@Override
public void run() {
layOut.setBackgroundColor(Color.argb(255,
color, color, color));
}
});
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}.start();'`enter code here

最佳答案

尝试使用颜色属性的对象动画器,检查此链接,它对您更有用。

color animation using object animator

关于java - 连续逐渐将背景颜色更改为所有颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27665145/

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