gpt4 book ai didi

android - 如何更改标准系统按钮的背景透明度

转载 作者:行者123 更新时间:2023-11-29 21:54:23 25 4
gpt4 key购买 nike

我的一个 Activity 中有一组按钮。这些按钮看起来不错,因为它们来自 Android 系统(灰色),因为我的 Activity 背景是灰色的。我试过以下

button.setBackgroundColor(Color.argb(125, 200, 200, 200));

这会创建所需的透明度,但我会丢失按钮状态,如按下、向上等。

我怎样才能保持 android 附带的按钮状态并且只降低不透明度?

最佳答案

在你的类里面,使用下面的代码:

alpha = new AlphaAnimation(0.3F, 0.3F); //Set opacity - Range 0.0 to 1.0
alpha.setDuration(0); // Set animation duration
alpha.setFillAfter(true); // Maintaining the effect to the button
yourButton.startAnimation(alpha);

希望我能帮到您。

再见!

关于android - 如何更改标准系统按钮的背景透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13627518/

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