Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi everyone I would like to ask how do I retrieve images at the same time for example if I enter letters abc after clicking done a 3 images will apear corresponding to what I have inputted

share|improve this question

1 Answer

Your question is a bit unclear, but if I have understood well you want to show one image for each of the chars entered as input.

So you keep a hashmap, where the key is the character and the value is the image you want to show for that character. After you break down the input to separate characters, you find the separate images to be displayed using the variable_name.get(Object key) method, so in this case you will pass the separate chars as the parameter one after the other. After retrieving the images you display them.

share|improve this answer
sorry for the unclear question. can you try to go to this post please stackoverflow.com/questions/14821057/… because this is our code and maybe you can tell us what is wrong with our code because we have tried almost all possbile solutions but still no luck. – Allen Gary Villota Feb 16 at 1:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.