I am trying to find the correct xml to define a layout of three items on a single 'line' as follows :
- Button (left aligned on the screen) with the text 'Prev' - wrap-context
- TextView (center aligned) with the title of the screen - fixed 200px size
- Button (right aligned on the screen) with the text 'Next' - wrap_content
Just cannot seem to get it working unless I use absolute layout which I'd rather not. I have experimented (seems like every option) with gravity/layout_gravity and embedded LinearLayouts...
I guess the question is - can I right align one item, left align another and center align another all on the same LinearLayout 'line'
Thanks .. KJ