Android中Webview的向上滑动和向下滑动动画
我的列表中有一个章节列表。当用户选择一个章节时,它会展开并在该章节列表中显示子主题。当用户选择特定子主题时,其内容将加载到新屏幕上的 Web 视图中。一切都做得很好。但我想要 webview 上的一些功能。当用户向上滑动 Web 视图时,Web 视图应向上移动,屏幕上应出现一个从下到上的新 Web 视图(在 Web 视图上向上滑动动画)以及下一个子主题内容。当用户向下滑动带有先前子主题内容的 Web 视图时,向下滑动的情况也是如此。
请帮忙 如何在 webview 上提供向上滑动和向下滑动的动画。 谢谢
i have a list of chapters in a list.when user selects a chapter it get expanded and sub topics in that chapter lists. when user select the particular sub topic its contents get loaded in webview on new screen. its all done fine. But i want some functionality on webview. When user slide up the webview, webview should move up side and a new webview from bottom to upside should appear on screen (slide up animation on webview) with next subtopics contents. same in case of slide down when user slides down web view with previous subtopics contents.
Please help
how to provide slide up and slide down animation on webview.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将动画应用到webview..
Slide down.xml
Slide Up.xml
使用Wbeview startAnimation方法
Apply animation to webview..
Slide down.xml
Slide Up.xml
Use Wbeview startAnimation method
请在您的活动中实现 OnGestureListener
并使用以下代码
fling 方法将处理 x 方向的触摸事件,并且您也可以使其在 y 轴上工作
pleas implement OnGestureListener in your activity
and use the following code
fling method will handle the touch event if x direction and you can make it work in y axis as well