Skip to content

Instantly share code, notes, and snippets.

@codeguru42
Created February 14, 2016 20:23
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 codeguru42/95e1dd9fef2f3386bc38 to your computer and use it in GitHub Desktop.
Save codeguru42/95e1dd9fef2f3386bc38 to your computer and use it in GitHub Desktop.
ArrayAdapter
public class CustomAdapter extends ArrayAdapter<Pipeline> {
private List<Pipeline> data;
public CustomAdapter(Context context, List<Pipeline> data) {
super(context, -1);
this.data = data;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment