Android如何使用webview和galleryview
我想要一个画廊视图其项目作为网络视图。所以我不想滚动图像,我想滚动网络视图..请帮忙。我做了一些东西,但 webview 无法正确运行到画廊中。
I want to a galleryview what its' items as webview. So i am not wanting scrolling image, i want to scroll webviews.. Please help. I make some things but webview doesnt run correct into gallery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须为图库视图使用自定义适配器,然后重写 getView 方法。像这样:
然后
使用新适配器配置您的图库视图:
YOUR_WEBVIEW_LAYOUT
是在布局资源中创建的布局,它可能只包含一个 Web 视图。You have to use custom Adapter for your gallery view and then override getView method. Something like this:
and then
and configure your gallery view with new adapter:
The
YOUR_WEBVIEW_LAYOUT
is a layout created in layout resources, which may contain also only a single webview.