Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道他们对此有很多问题,我已经尝试了其中的一些,但没有一个对我有用。我有布局文件,布局结构是这样的
l2 在 l1 之上,我想动态地将 l2 的透明度更改为 40% 到 5o%。这样在 l2 后面的布局 l1 几乎不可见。请帮忙
您可以使用持续时间 = 0 的 AlphaAnimation 在视图上设置一定的透明度:
AlphaAnimation animation = new AlphaAnimation(1, 0.5); animation.setDuration(0); animation.setFillAfter(true); ln2.startAnimation(animation);
希望这可以帮助 :)