How to add Button to the Buttom of Layout

Use Relativ layout and add the button with this attributes

<br /> <button android:id="@+id/button1" android:layout_width="match_parent" android:layout_height="46dp" android:text="Load" android:layout_alignParentBottom="true" /><br />

The ParentBotton “true” allocate at to the bottom of the layout.

Leave a Comment