2024年安卓最新Android的图文混合实现之TextView+html加载图片,github面经
在Android中,使用TextView加载HTML字符串并显示图文混排的内容,可以通过Html类来处理图片。以下是一个简单的例子:
TextView textView = findViewById(R.id.text_view);
String htmlString = "<img src='http://example.com/image.png' />这是一个图文混排的例子。";
textView.setText(Html.fromHtml(htmlString, new Html.ImageGetter() {
@Override
public Drawable getDrawable(String source) {
Drawable drawable = null;
try {
drawable = Drawable.createFromStream(
new URL(source).openStream(), null);
} catch (Exception e) {
e.printStackTrace();
}
// 可以在这里对drawable进行处理,例如设置大小
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
return drawable;
}
}, null));
在这个例子中,我们创建了一个TextView,并为它设置了一段HTML格式的字符串。通过Html.fromHtml
方法,我们提供了一个ImageGetter的匿名内部类来加载图片。在getDrawable
方法中,我们通过传入的图片URL打开一个输入流,并将其转换为Drawable对象。需要注意的是,这段代码可能会在主线程中运行,因此对网络操作的处理应当在异步任务中完成。
评论已关闭