Android Webview 图像渲染到中心而不是左上角
Web 视图中的图像渲染从图像的左上角开始,该图像比 Web 视图大,因此可以滚动。我想将图像居中而不是渲染到左上角...有什么办法可以做到这一点吗?
The image render in webview starts from the top-left corner of my image which is larger than webview so its scrollable. I'd like to center the image rather than it rendering to top-left corner...is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用纯 CSS 并调用 myWebView.loadData,而不是调用 myWebView.loadUrl。
只需确保对任何无关字符进行 URL 编码即可。
例子:
Instead of calling myWebView.loadUrl, you can use plain CSS and call myWebView.loadData instead.
Just make sure to URL Encode any extraneous characters.
Example: