Skip to content

Commit

Permalink
Merge pull request emilsjolander#307 from Eng-Fouad/patch-1
Browse files Browse the repository at this point in the history
addFooterView(View v, Object data, boolean isSelectable) is missing
  • Loading branch information
emilsjolander committed Jul 12, 2014
2 parents 701450a + 05630d4 commit 9360699
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,10 @@ public void removeHeaderView(View v) {
public int getHeaderViewsCount() {
return mList.getHeaderViewsCount();
}

public void addFooterView(View v, Object data, boolean isSelectable) {
mList.addFooterView(v, data, isSelectable);
}

public void addFooterView(View v) {
mList.addFooterView(v);
Expand Down

0 comments on commit 9360699

Please sign in to comment.