What is the data type of "directions" and what are you doing with it after you assign it?
It looks like you're doing string concat with it, which means everything is getting converted to a String, including the output from Html.fromHtml, which probably means that the image is getting stripped out. Strings can't contain images. You need to retain the Spannable interface and work with that or assemble the whole thing differently. Doug On Jun 7, 1:02 pm, Agnes Despicable Me <[email protected]> wrote: > directions += Html.fromHtml("<img src=\"smiley\">", imageGetter, null) > + " Turn to left\n"; -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

