I\'m trying attach a footer, that is fixed and always visible, to the bottom of a ListFragment.
I\'m currently doing it like this:
@Override public v
You can do that in the xml layout:
<RelativeLayout>
<Button android:id="@+id/footer" android:layout_alignParentBottom="true"/>
<ListView android:id="@android:id/list" android:layout_above="@id/footer"> <!-- the list -->
</RelativeLayout>
This layout will be used in the onCreateView
method of the fragment.