Put Image In An Absolute Position In A Linear Layout
I have an android application I created with a menu with a set of buttons that are ordered one after the other. I have a logo Icon that I want to pin to the bottom right corner of
Solution 1:
Use Nested Layouts..
<RelativeLayout>
<LinearLayout>
Place your elements and menu here.
</LinearLayout>
<ImageView
android:layout_alignParentBottom="true" />
</RelativeLayout>
Post a Comment for "Put Image In An Absolute Position In A Linear Layout"