views:

23

answers:

0

so I have three text view elements within a relative layout container. @+id/name,@+id/message,@+id/time

the @+id/message is positioned by layout to right of @+id/name and @+id/time is to the right of @+id/message, it renders fine as long as the three elements dont take up the width of the screen but when it does it bunches up the last element. I want it to overflow below if this happenens. The best way I can think of it would be having 3 html divs

<div style='float:left;'>name</div><div style='float:left'>message</div><div style='float:left;'>time</div>