/res/raw/test.html に HTML ファイルがあります
そして、次のコードを使用してWebビューで表示します
WebView wbview = (WebView)findViewById(R.id.webView1);
InputStream fin;
try
{
fin = getResources().openRawResource(R.raw.manual);
byte[] buffer = new byte[fin.available()];
fin.read(buffer);
fin.close();
wbview.loadData(new String(buffer), "text/html", "UTF-8");
}
catch (IOException e)
{
e.printStackTrace();
}
そして、これは私のHTMLファイルの私のコードです
<html>
<p>
Lorem ipsum dolor sit amet,
</p>
<table>
<tr>
<td>
<img src=\\"file:///android_asset/test_image2.jpg\"/>
<img src="test_image2.jpg" width="50px" alt="Hi">
<img src=\"res/drawable/test_image.png"/>
<img src="file:///android_res/drawable/test_image.png" />
<img src=\"file:///android_res/drawable/test_image.png"\ />
</td>
</tr>
</table>
</html>
リソースフォルダーの画像をhtmlファイルに表示したい...すべての可能性を試してみましたが、まだ機能しません。HTMLテキストを表示するだけですが、画像の場合は表示方法がわかりません
私を助けてください