问题描述
- android romoteviews setTextViewText中使用HTML出现问题
-
最近碰到一个问题,romoteviews使用HTML解析图片解析不出来,代码如下:
views.setTextViewText(R.id.text_content,
Html.fromHtml("abc", new Html.ImageGetter(){
@Override
public Drawable getDrawable(String source){
Drawable myDrawable = null;
File imageFile = new File(source);
myDrawable = zoomDrawable(imageFile);//这是用于缩放
myDrawable.setBounds(0 , 0, myDrawable.getIntrinsicWidth(),
myDrawable.getIntrinisicHeight());
return myDrawable;
}}, null));
最后解析出的图片显示OBJ,这个问题困惑已久,有哪位大侠晓得原因吗?请指教,不胜感激!
时间: 2024-12-09 21:10:53