ローカルの画像とテキストを含む Web ビューをカスタム フォントで表示したいと考えています。どちらも別々に使用すると正常に動作しmywebview.loadDataWithBaseURL()
ます。loadDataWithBaseURL
私のローカル画像はSDカードの異なるフォルダーにあり、カスタムフォントはアプリのasset/fontsフォルダーにあるため、私の理解では解決できません。
誰にもヒントや解決策がありますか?
よろしくマクフライ
彼がコンテンツプロバイダーにヒントを与えてくれてありがとう。これが私にとっての解決策になると思います。しかし、それは私にはうまくいきません。Android フォーラムの例に基づいて contentprovider を実装しました。Web ビューにはテキストのみが表示され、写真は表示されません。コンテンツ プロバイダーのすべてのメソッドにデバッグ ブレークポイントを設定しましたが、アプリはそのコードを通過しません。この問題のコードを追加しましたが、おそらく誰かが問題を見ているのでしょうか?
ContentProvider クラス
class LocalFileContentProvider extends ContentProvider {
private static final String URI_PREFIX = "content://myapp.pictures";
public static String constructUri(String url) {
Uri uri = Uri.parse(url);
return uri.isAbsolute() ? url : URI_PREFIX + url;
}
@Override
public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException {
File file = new File(getContext().getFilesDir() + uri.getPath());
ParcelFileDescriptor parcel = ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY);
return parcel;
}
@Override
public boolean onCreate() {
return true;
}
@Override
public int delete(Uri uri, String s, String[] as) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public String getType(Uri uri) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public Uri insert(Uri uri, ContentValues contentvalues) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public Cursor query(Uri uri, String[] as, String s, String[] as1, String s1) {
throw new UnsupportedOperationException("Not supported by this provider");
}
@Override
public int update(Uri uri, ContentValues contentvalues, String s, String[] as) {
throw new UnsupportedOperationException("Not supported by this provider");
}
}
Android マニフェスト
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
私のHTML
<img width="120" height="120" src="content://myapp.pictures/images/example/example1.jpg" style="float:right;clear:right;margin:0 5px 0 0;">