Skip to content

Commit

Permalink
Add method for addHeaderView(View, Object, boolean)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Mitchell committed Oct 23, 2013
1 parent 37eb26e commit 86186b8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,10 @@ public void setOnItemLongClickListener(OnItemLongClickListener listener) {
mList.setOnItemLongClickListener(listener);
}

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

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

0 comments on commit 86186b8

Please sign in to comment.