I am reading data from xml and setting it to EditText view. Here data contains images also.
I am able to display data in EditText view using html.fromHtml() method.
The problem is when I am get data from EditText and store it in a string I am not getting images when I set that string to another TextView.
I am reading using
string s=editextview.gettext();
I think i got your question. If you are trying to read a xml document containg both text and images (such as a HTML file), determine how many images you have. Have as many ImageView in your layout as are the number of images in xml (adding it dynamically). Display text in EditText or Text View (depending on how you want it). You will have to format it.
AS far as i know, you can not display images in EditText view.