android 将颜色应用于 alpha 动画
有没有办法在 Android 中将颜色应用于 alpha 动画?我知道如何使用
元素,但我想让 alpha 应用颜色以及 alpha,以便我可以突出显示布局。这可能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在 Android 中将颜色应用于 alpha 动画?我知道如何使用
元素,但我想让 alpha 应用颜色以及 alpha,以便我可以突出显示布局。这可能吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
Android 中的动画不能包含颜色变化——仅包含 Alpha、旋转、缩放和平移。
也就是说,您仍然可以通过将两个不同颜色的对象叠加在一起并使顶部的对象淡入或淡出来更改颜色。
您还可以查看 TransitionDrawable 或 TextSwitcher 来完成类似的事情。希望我们能够在未来的更新中获得对彩色动画的全面支持。
Animations can not include color changes in Android--only alpha, rotation, scale, and translation are included.
That said, you can still make color changes by overlaying two objects of different colors on top of each other and fading the top one in or out.
You could also look into a TransitionDrawable or TextSwitcher to accomplish something similar. Hopefully we will be able to get full support for color animations in a future update.
好吧,这是我的解决方案,对屏幕的特定区域进行动画处理(请参阅下面的演示)。请注意,此代码针对运行 >= API9 的设备。
初学者友好,只需复制和粘贴即可。
FadeAnimationColored.java
接下来向您的布局添加一个额外的视图,将其视为覆盖层(我使用了一个简单的
FrameLayout
,它设置为match_parent
)下面是一个片段,展示了如何在 Activity 或 Fragment 中设置动画:
Well, here is my solution animating a particular region of the screen (see demo down below). Please note that this code is targeting devices which run >= API9.
Beginner friendly, just copy and paste.
FadeAnimationColored.java
Next add an additional View to your layout, think of it as an overlay (I used a simple
FrameLayout
which is set tomatch_parent
)Here is a snippet which shows how to set up the animation in your Activity or Fragment: