Skip to content

Instantly share code, notes, and snippets.

@alfannas
Created July 14, 2018 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfannas/62613f87bd99b677c0253608b5b862a5 to your computer and use it in GitHub Desktop.
Save alfannas/62613f87bd99b677c0253608b5b862a5 to your computer and use it in GitHub Desktop.
...
LayoutInflater myinflater = getLayoutInflater();
ViewGroup myHeader = (ViewGroup)myinflater.inflate(R.layout.android_listview_header, listView, false);
TextView tvHeader = (TextView)myHeader.findViewById(R.id.header_textview);
listView.addHeaderView(myHeader);
listView.setAdapter(adapter);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment