是否可以重用 ViewFlipper 中的视图?

发布于 2024-12-08 04:13:30 字数 84 浏览 1 评论 0原文

可能是一个愚蠢的问题。但是,是否可以重用 viewflipper 中的视图? 现在,我在视图翻转器中有三个图像视图。是否可以有一个图像视图并将源更改为它?

May be a dumb Question.But still, is it possible to reuse the views in viewflipper?
Now,i have three imageviews in a viewflipper.is it possible to have a single imageview and change the source to it?

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

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

发布评论

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

评论(2

野侃 2024-12-15 04:13:30

如果您想自己处理簿记,您可以重用视图。然而,取景器至少需要 2 个视图。来自 Android ViewFlipper 文档

简单的 ViewAnimator,可以在两个或多个视图之间制作动画
已添加到其中。一次只显示一个孩子。如果
根据要求,可以定期自动在每个孩子之间切换
间隔。

You can probably reuse view if you want to take care of the bookkeeping your self. However the viewflipper requires at least 2 views. From the Android ViewFlipper Docs:

Simple ViewAnimator that will animate between two or more views
that have been added to it. Only one child is shown at a time. If
requested, can automatically flip between each child at a regular
interval.

摇划花蜜的午后 2024-12-15 04:13:30

您必须从 ViewFlipper 中删除 ImageView,然后将其放在其他地方。您不能同时将其放入两个 ViewGroup 中(您将得到一个异常,即视图已经有父级)。

但这是您根本不需要做的开销。只需创建新的 ImageView 并使用它们即可。 ImageView 的内存消耗部分不是对象本身,而是它绘制的位图,所以我真的建议阅读 这篇文章

You would have to remove the ImageView from the ViewFlipper and then put it somewhere else. You can't put it into two ViewGroups at the same time (you'll get an exception that the view has already a parent).

But this is an overhead which you simply don't need to do. Simply create new ImageViews and use them. The memory consuming part of an ImageView is not the object itself but the bitmap it draws so I really recommend to read this article.

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