使用 ViewAnimator 显示滚动条

发布于 2024-12-14 18:40:15 字数 76 浏览 0 评论 0原文

我有一个视图动画师,我通过 Web 服务调用动态添加图像。但是,无论我向 ViewAnimator 添加多少图片,滚动条都拒绝显示。想法?

I have a view animator that I am adding images to dynamically via a web service call. However, the scroll bar refuses to show up no matter how many pics I add to the ViewAnimator. Thoughts?

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

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

发布评论

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

评论(1

我也只是我 2024-12-21 18:40:16

ViewAnimator 不是可滚动布局。如果您没有调用 showNext 或 showPrevious 的机制,则向视图动画器添加子视图将不会显示添加的视图。

也许您想使用 ScrollView 代替?您需要创建一个包含垂直方向的 LinearLayout 的 ScrollView。您现在可以动态地将图像添加到 LinearLayout 中,并且 ScrollView 的大小将会增加。

The ViewAnimator is not a scrollable layout. Adding a childview to view animator will not show the added view if you don't have a mechanism to call showNext or showPrevious.

Maybe you want to use a ScrollView instead? You nee to create a ScrollView that contains a LinearLayout with a vertical orientation. You can now add images dynamically to the LinearLayout and the ScrollView will increase in size.

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