How to add Button to the Buttom of Layout

Use Relativ layout and add the button with this attributes
<Button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="46dp" android:text="Load" android:layout_alignParentBottom="true" />
The ParentBotton "true" allocate at to the bottom of the layout.

Post a Comment

0 Comments