I am trying to layout 1 textview (upText) left aligned and 1 textview (downText) and an image view (image) both on the same line and right aligned.
how can I do that? I
Don't use a LinearLayout
. Use a RelativeLayout
, with
TextView
set with android:layout_alignParentLeft="true"
TextView
set with android:layout_alignParentBottom="true"
and android:layout_alignParentRight="true"
ImageView
, which presently looks like it is going to overlap the second TextView