How do I create an ImageView in java code, within an existing Layout?

Posted by Dan T on Stack Overflow See other posts from Stack Overflow or by Dan T
Published on 2010-06-08T02:45:37Z Indexed on 2010/06/08 2:52 UTC
Read the original article Hit count: 306

Filed under:
|
|
|
|

I'm looking for an easy way for the user to see how many drinks they've had for a BAC calculator.

PICTURE OF THE APP, for reference

On button press, I would like an image to be added to the screen, directly under the spinner and with left alignment. When I press the button again, I want another image to be added to the screen.

So if I pressed the add beer button, a drawable of a beer would appear below the spinner. If I pressed the add beer button again, I want there to be TWO drawables of beers under the spinner, preferably with them being added from the right.

(Also, having them reach their width limit, wrapping around, and starting again on the left, but below a full line, would be AWESOME)

I can't figure out how to do this. I assume adding a ImageView in code to a relative layout (because it needs to be positioned to the right) would be the best route, but if it's possible in xml I'd be more than happy to use that. Any help?

© Stack Overflow or respective owner

Related posts about java

Related posts about android