This is currently what I have.

All the boxes are linear layouts. But I want the Star to be right aligned. I have added a TextView with ” ” just to make a little space but I will be removing this. If I change the TextView to fill_parent it causes the Star to go off to the right of the screen (as expected but I was hoping it would fill up everything inbetween itself and the star)
I can’t think how to make the ImageView go to the right. The layout_grvaity is currently right but this hasn’t changed anything.
Not very good with design 😉
TIA
Better way is to use a
relative layoutand then setandroid:alignParentRight="true", otherwise you can try setting width of your view asfill_parentand then setgravityto “right”.Hope this helps!!