大圖象我需要使用web視圖來加載從資產一個大的圖像(大約3500 X 3500像素)。的Android:加載從資產使用網頁視圖
我已經做了很多的研究在這裏#2,然而,一切答案都爲我工作。我想這可能是使用資產的Android 4.0+的問題。
我當前的代碼看起來像:
WebView webView = (WebView)findViewById(R.id.myWebView);
webView.loadUrl("file:///android_asset/test.html");
test.html的樣子:
<html>
<table>
<tr>
<td>
<img src="testimage.png" width="3500px" alt="TestAlt">
</td>
</tr>
</table>
</html>
兩個testimage.png和test.html的是資產。在這個測試我的身體Android設備上獲取:
網頁無法 在文件的網頁:///android_asset/test.html可能暫時,或者它已永久性地移動到新網址。根據要求
的logcat:
I/webclipboard: clipservice: [email protected]
V/webkit: BrowserFrame constructor: this=Handler (android.webkit.BrowserFrame) {43ac3dc8}
D/WebView: loadUrlImpl: called
D/webcore: CORE loadUrl: called
D/webkit: Firewall not null
D/webkit: euler: isUrlBlocked = false
D/chromium: Unknown chromium error: -6
I/GATE: <GATE-M>DEV_ACTION_ERROR</GATE-M>
V/webkit: reportError errorCode(-1) desc(There was a network error)
I/GATE: <GATE-M>DEV_ACTION_COMPLETED</GATE-M>
I/Adreno200-EGLSUB: <ConfigWindowMatch:2136>: Format RGBA_8888.
D/WebView: onSizeChanged - w:480 h:0
D/WebView: onSizeChanged - w:480 h:446
可以在這裏發佈logcat – KOTIOS
@ Stacks28我已根據要求更新了我的問題。 – user1234
哎HVü給出正確道路的權利?再次檢查拼寫? – KOTIOS