野兽
摘要: html中加载项目中的图片信息。 1、使用 loadUrl方法 webView01.loadUrl("file:///android_asset/news.html");在项目assets中news.html文件中内容: 2、使用loadDataWithBaseURL()方法 webView01 = (WebView) this.findViewById(R.id.webview_webView01); String data = "这是图片"; webView01.loadDataWithB... 阅读全文
posted @ 2013-10-16 13:16 android-susu 阅读(1207) 评论(0) 推荐(0) 编辑
摘要: webView直接调用webView.loadData(data, mimeType, encoding);方法,如果data中有中文会显示乱码。 String data = "测试中文yingwing"; String encoding = "utf-8"; String mimeType = "text/html"; 解决方法: 1、设置webview默认编码 webView.getSettings().setDefaultTextEncodingName(encoding); 2、改用:loadDataWithBaseURL() 阅读全文
posted @ 2013-10-16 10:18 android-susu 阅读(1241) 评论(0) 推荐(0) 编辑