我想使用自定义字体显示带有本地图像和文本的webview。
使用mywebview.loadDataWithBaseURL()
时,两者都可以正常工作。
因为我的本地图像位于不同文件夹中的SD卡和我的自定义字体位于应用程序的asset / fonts文件夹中,所以我不能用loadDataWithBaseURL
来理解我的解决方案。
有人有提示或解决方案吗?
问候 McFly的
非常感谢他对contentprovider的暗示。我想这将是我的解决方案。但它对我不起作用。我基于android论坛的一个例子实现了contentprovider。 webview仅显示我的文本,但没有图片。我在内容提供者的所有方法中设置了调试断点,但是应用程序没有通过该代码。 我为这个问题添加了我的代码,有人确实看到了这个问题吗?
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;">