动画布局背景图像更改

发布于 2024-12-04 16:42:21 字数 204 浏览 2 评论 0 原文

是否可以在 Android 中对布局(RelativeLayoutLinearLayout 等)的背景图像进行动画处理?在我的一个应用程序中,我从互联网获取图像并在加载后将其显示为背景图像。如果使用淡入淡出效果或类似的效果来替换背景图像,那就太酷了。

我已经尝试了很多,但似乎无法找到解决方案。动画始终是布局而不是图像本身。

Is it possible to animate the background image of a layout (RelativeLayout, LinearLayout, etc.) in Android? In one of my applications I am fetching an image from the internet and displaying it as the background image once it's loaded. It would be really cool if the background image was swapped out using a fade effect or something like that.

I've tried quite a bit, but couldn't seem to find a solution. It's always the layout that's animating and not the image itself.

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

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

发布评论

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

评论(1

滥情哥ㄟ 2024-12-11 16:42:21

可能是最好的选择,将布局放在 FrameLayoutRelativeLayout 中,并使用 ViewSwitcher 位于其后面。请参阅演示 (以及相关布局)在 Android API 演示应用程序中(使用 ImageSwitcher,它是 ViewSwitcher 的基于适配器的特殊子类)。它确实意味着您的应用程序中有一个额外的 ViewGroup 级别,但除非您正在做一些特别复杂的事情(将它们嵌套在 ListView 行或其他内容中),否则它应该表现得很好,并且为您处理过渡动画。

您也可以使用 DroidFu 的 ">WebImageView,它为您完成了大部分烦人的跑腿工作。

Might be your best bet to just layer your layout in a FrameLayout or RelativeLayout with a ViewSwitcher behind it. See the demo (and related layouts) in the Android API Demos app (that uses an ImageSwitcher, which is a special-case adapter-based subclass of ViewSwitcher). It does mean an extra ViewGroup level in your app, but unless you're doing something especially complicated (nesting these in ListView rows or something) it should perform just fine, and handles the transition animations for you.

You could also just use WebImageView from DroidFu, which does most of the annoying legwork for you.

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