我使用HTML在TextView
中显示图片和文字。
在这种情况下,我可以设置宽度= 100%吗?
这是我的代码:
public class ImageGetter implements Html.ImageGetter {
@Override
public Drawable getDrawable(String source) {
Drawable drawable = getResources().getDrawable(R.drawable.cs2);
if (source.equals("img1")) {
drawable = getResources().getDrawable(R.drawable.img1);
drawable.setBounds(0, 0, width, 150);
}
return drawable;
}
}
答案 0 :(得分:0)
你的意思是100%如果原来的drawable。你试过了吗?
drawable.copyBounds().width()