Skip to content

Instantly share code, notes, and snippets.

@clayallsopp
Created March 6, 2011 18:35
Show Gist options
  • Save clayallsopp/857512 to your computer and use it in GitHub Desktop.
Save clayallsopp/857512 to your computer and use it in GitHub Desktop.
Part 4 Stub 2
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// EDIT: Shoutout to Cyril Mottier for pointing out that this setContentView isn't necessary
// "When using a ListActivity, Android will automatically creates a ListView that fills the screen."
// setContentView(R.layout.main);
setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,brocabList));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment