我使用Html.fromhtml在editText中插入圖像...但不是顯示圖像,而是顯示[obj]「正方形內的文本obj」 可能是什麼問題?? 這是imageGetterHtml.fromHtml問題
ImageGetter imageGetter = new ImageGetter() {
public Drawable getDrawable(String source) {
Drawable d = getResources().getDrawable(R.drawable.e11);
d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
return d;
}
};
這是代碼行:
CharSequence cs =
Html.fromHtml("<img src='" +getResources().getDrawable(R.drawable.e11)+ "'/>"
,imageGetter, null);
但這不能做軟鍵盤..對不對? – Android