Android - WebView将图像缩放到全宽?
在 WebView 中查看图像时,是否有一种编程方式可以强制 WebView 自动缩放图像,直到其在视图中达到全宽?
When viewing an image in a WebView, is there a programmatic way to force the WebView to automatically zoom the image until it's full width in the view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此 html 代码显示全尺寸图像:
现在创建一个 javascript 函数(
showImage
)来打印此图像。(我不知道该怎么做)。并像这样调用你的 javascript 函数:
这里解释了如何从 android 代码调用 Javascript 函数:
http://android-developers.blogspot.com/2008/09/using -webviews.html
This html code shows an image at full size:
Now create a javascript function(
showImage
) that prints this.(I don't know how to do that).And call your javascript function like this:
How you can call a Javascript function from android code is explained here:
http://android-developers.blogspot.com/2008/09/using-webviews.html