我正在使用textview加载HTML文本。 HTML文本有图像。我正在使用ImageGetter
来加载图片。但是图像正在被右侧裁剪。以下是代码:
textView.setText(Html.fromHtml(htmlText, new ImageGetter() {
@Override
public Drawable getDrawable(String source) {
String path = "/sdcard/" + source;
Drawable bmp = Drawable.createFromPath(path);
bmp.setBounds(0, 0, bmp.getIntrinsicWidth(), bmp.getIntrinsicHeight());
return bmp; }}, null));