Android Wikipedia文章搜索在我的网页浏览中无法正常显示?

时间:2013-03-01 10:14:13

标签: android html webview

我正在维基百科 - 文章搜索中尝试使用维基百科API沙箱和http://en.wikipedia.org/wiki/Special:ApiSandbox等网址。使用这个geting url解析url获取数据显示在我的webview中但数据不能正确显示在我的webview中。

我希望在我的webview中显示json数据。所有webview数据都没有在我的webview中修复,有时我的数据显示在屏幕外,那时我的webview滚动到水平。

编辑:删除网页浏览中的水平滚动,屏幕外的数据。

编辑:这是我的屏幕截图; 我希望我的webview数据显示如下

enter image description here

但我的数据只显示如何解决此问题而不更改HTML数据,因为我的HTML数据是动态的

任何人都有任何图书馆维基百科搜索文章给我一些想法。

enter image description here

ANOTHER QUESTION:如何删除My Dynamic Html数据中的特定<div><table>Data以及如何获取specific word in webview点击(如listview点击)。 给我任何维基百科图书馆,这对我来说非常有用。

有人可以就如何做到这一点给出一些提示/建议。

1 个答案:

答案 0 :(得分:4)

WebSettings settings = webview.getSettings();
settings.setBuiltInZoomControls(false);
settings.setUseWideViewPort(true);
settings.setJavaScriptEnabled(true);
settings.setSupportMultipleWindows(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
settings.setLoadsImagesAutomatically(true);
settings.setLightTouchEnabled(true);
settings.setDomStorageEnabled(true);
settings.setLoadWithOverviewMode(true);

使用您的webview尝试这些设置,我使用此代码修复了渲染错误。