Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストに文字起こしを含む utf-8 html ページ (HTML に適切な文字セットを含む) があります。書き起こしの一部の文字は、空の四角で示されています。loadDataWithBaseUrl と単純な loadData でロードを試みました。4.1 では動作するようですが、3.0 では動作しません。もしかしてフォントの問題?
このようにコンテンツを読み込んでいますか?
String contents = res.getString(R.string.content_details); WebView wv1 = (WebView)findViewById(R.id.webView1); wv1.loadDataWithBaseURL("file:///android_asset/", contents, "text/html", "utf-8", null);
それは私のために働いた。