Skip to content

Instantly share code, notes, and snippets.

@penghou620
Created December 17, 2013 22:29
Show Gist options
  • Save penghou620/8013797 to your computer and use it in GitHub Desktop.
Save penghou620/8013797 to your computer and use it in GitHub Desktop.
String[] myStringArray = new String[] { "Cool", "Very nice", "Hate it" };
ArrayAdapter adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, myStringArray);
ListView listView = (ListView) findViewById(R.id.listView1);
listView.setAdapter(adapter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment