在 Android 中获取视图的 alpha/不透明度

发布于 2024-09-16 07:29:05 字数 344 浏览 4 评论 0原文

在为 View 设置动画后,如何获取它的 alpha/不透明度?

我的 fadeIn() 如下 - fadeOut() 与切换的端点相同。

public void fadeIn(View view) {
    Animation animation = new AlphaAnimation(0.0f, 1.0f);
    animation.setDuration(1000);
    animation.setFillAfter(true);
    view.startAnimation(animation);
}

How can I get the alpha/opacity of a View after I've animated it?

My fadeIn() is below - fadeOut() is the same with the endpoints switched.

public void fadeIn(View view) {
    Animation animation = new AlphaAnimation(0.0f, 1.0f);
    animation.setDuration(1000);
    animation.setFillAfter(true);
    view.startAnimation(animation);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愿与i 2024-09-23 07:29:05

我强烈建议您在 XML 文件中定义动画。该 API 不支持获取特定的 alpha。

您仍然可以记住,您的视图具有的不透明度是您最后定义的;在本例中(您的 fadeIn() 方法),最新的不透明度值是您传递到 AlphaAnimation 构造函数中的值。

I would highly recommend you to define the animations in an XML-file. The API doesn't have support for getting a specific alpha.

You can still have in mind that the opacity that your view has, is the last one you've defined; in this case, (your fadeIn() method), your latest opacity value is the value you passed into the AlphaAnimation constructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文