如何让网页适合Android屏幕(webview)?
我想要在 android 的 webview 中渲染网页。目前,我可以显示网页,但如何使其适合屏幕? 我提到: Android Webview - 网页应适合设备屏幕 但在那里没有找到解决方案。
谢谢!!
Possible Duplicate:
Android Webview - Webpage should fit the device screen
I want to render a webpage in android's webview. Currently, I can display a webpage but how to make it fit within the screen?
I referred to:
Android Webview - Webpage should fit the device screen
but didn't find a solution there.
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对我来说唯一有效的方法是这样的:
由于公司的设备类型,我正在使用 Android 2.1。但我使用每个人的部分信息解决了我的问题。
The only way that works for me was this way:
I am working on Android 2.1 because of the kind of devices from the company. But I fixed my problem using the part of informations from each one.
我的解决方案是不同的。
我制作了一个足够大的网页,因此它会被缩小。在 webview 设置中,我输入以下内容:
请务必导入以下内容:
import android.webkit.WebSettings.ZoomDensity;
My solution was different.
I made a webpage big enough so it would then get zoomed out. And in the webview settings i put the following:
Be sure to import the following:
import android.webkit.WebSettings.ZoomDensity;
您的问题不是很清楚,但如果我猜您的意思是
webview
没有扩展以适应整个屏幕?请发布您的代码来支持您的问题。要使
webview
扩展到整个屏幕,请在 Activity 布局 xml 中添加webview
并确保设置layout_width
和将布局高度设置为 fill_parent。这是一个简单的例子:
Ryan
Your question is not very clear but if I'm guessing you mean the
webview
is not expanding to fit the whole screen? Please post your code to support your question.To make the
webview
expand to the whole screen, add thewebview
in your activity layout xml and make sure you set thelayout_width
andlayout_height
to fill_parent. Here's a simple example:Ryan