• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Html.fromHtml problem

I'm using Html.fromhtml to insert image in an editText ... but instead of displaying the image, it displays [obj] " the text obj inside a square"
what could be the problem ??? :confused:


Code:
 CharSequence cs = 
Html.fromHtml("<img src='" +getResources().getDrawable(R.drawable.e11)+ "'/>"
,imageGetter, null);
 
Back
Top Bottom