I haven't tried this but it may work.
ListView extends ViewGroup so when a ListView is 'long-clicked', the listener should be passed which child view is under the long-click.
Create your own ListView class which implements onLongClickListener then check to see if the View is either your Header or Footer and, if so, return 'true' to show the long-click has been 'consumed' and to indicate that no further action should be taken.
protected MyListView extends ListView
implements onLongClickListener {
public boolean onLongClick (View v) {
boolean longClickConsumed = false;
// Check if v is either your Header or Footer
// if so then set longClickConsumed to be true
return longClickConsumed;
}
}