Skip to content

Instantly share code, notes, and snippets.

@cnevinc
Created May 8, 2014 17:36
Show Gist options
  • Save cnevinc/d6aaf30af3550ca0e857 to your computer and use it in GitHub Desktop.
Save cnevinc/d6aaf30af3550ca0e857 to your computer and use it in GitHub Desktop.
set footer/header view of a listview
LinearLayout v = (LinearLayout) LayoutInflater.from(this)
.inflate(R.layout.listview_header, null);
swipeListView.addFooterView(v);
swipeListView.addHeaderView(v);
swipeListView.setAdapter(adapter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment