Skip to content

Instantly share code, notes, and snippets.

@RiverGlide
Created May 23, 2010 21:02
Show Gist options
  • Save RiverGlide/411248 to your computer and use it in GitHub Desktop.
Save RiverGlide/411248 to your computer and use it in GitHub Desktop.
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
theUniversities = theUniversities();
showAListOf(theUniversities);
theUserCanFilterThemByTyping();
}
@Override
protected void onListItemClick(ListView l, View v, int inThisPosition, long id) {
super.onListItemClick(l, v, inThisPosition, id);
theChosenUniversity = theUniversity(inThisPosition);
showItsDetails();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment