如何在 Android 中的 View Flipper 上重新加载相同的布局?
我的视图翻转器内有一个线性布局。当我猛击/滑动布局时,相同的布局会使用动画 Slide_left_out 和 Slide_right_in 重新加载相同的布局。我只有一个布局视图。它具有图像视图和文本视图的值。当我滑动视图时,它只是将下一个值更改为该视图。有什么想法吗?
I have an Linear Layout inside the View Flipper. When i fling/swipe the layout the same layout reloads the same layout with the animations slide_left_out and slide_right_in. I just have only one layout view. it has the values the image view and text view. When i swipe the view it just change the next value to that views. Any Idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是如何添加滑动/滑动功能的?换句话说,当屏幕“翻转”时,您的代码就必须进来并将视图翻转器“翻转”到不同的布局。
AFAIK 没有一种内置方法可以在无需编写一些代码来处理翻转并手动更改视图翻转器布局(索引)的情况下翻转视图翻转器。
编辑:
基本手势检测
使用
ViewVlipper.setDisplayedChild()
翻转视图How did you add the swipe/fling functionality? In other words, when the screen is "flung", that's where your code has to come in and "flip" the viewflipper to a different layout.
AFAIK There isn't a built-in way to fling the viewflipper without having to write some code to handle the fling and manually change the viewflipper layout (index).
EDIT:
Basic Gesture Detection
Flipping Views using
ViewVlipper.setDisplayedChild()