我想使用自定义字体显示带有本地图像和文本的 web 视图。两者都可以单独使用 using mywebview.loadDataWithBaseURL()
。因为我的本地图像在不同文件夹中的 sdcard 和我的自定义字体位于应用程序的资产/字体文件夹中,所以我无法loadDataWithBaseURL
根据我的理解实现解决方案。
有没有人有提示或解决方案?
问候麦克弗利
非常感谢他暗示内容提供者。我想这将是我的解决方案。但这对我不起作用。我基于一个 android 论坛的例子实现了 contentprovider。webview 只显示我的文本,但没有图片。我在内容提供程序的所有方法中都设置了调试断点,但应用程序没有通过该代码。我为这个问题添加了我的代码,也许有人确实看到了这个问题?
内容提供者类
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");
}
}
安卓清单
<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;">