final String mimeType = "text/html";
        final String encoding = "utf-8";
                               
        mWebView1 = (WebView) findViewById(R.id.wv1);
        mWebView1.getSettings().setJavaScriptEnabled(true);
        mWebView1.loadData("<HTML><BODY>Hello,world! <BR>" +
          "<img src=\"file://sdcard/icon.jpg\"/>" +
          "</BODY></HTML>", mimeType, encoding);


위 방법으로 이미지를 출력 할려고 하는데..

Hello world 스트링은 나오는데.

이미지는 나오지 않는군요. ~~

경로가 잘못됐나 싶어서.

이리지러 다 변경 해봐도 안되는데 혹시 알고 있으신분 계신가요??