Bottom button bar in android

You can do something like this inside a relative layout

<LinearLayout 
    android:id="@+id/footer" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:orientation="horizontal"
    android:layout_alignParentBottom="true" 
    style="@android:style/ButtonBar">

    <Button 
        android:id="@+id/saveButton" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_weight="1"
        android:text="@string/menu_done" />

    <Button 
        android:id="@+id/cancelButton"                                               
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_weight="1"
        android:text="@string/menu_cancel" />

</LinearLayout>

Leave a Comment