setListAdapter - Bind ArrayAdapter to ListView

setListAdapter was added in API Level 1
Provides the cursor for the list view. (ListActivity.setListAdapter)

1. Link a String Array to an ArrayAdapter named myArrayAdapter

2. Bind myArrayAdapter to the ListView by adding this line of code to the onCreate method.

setListAdapter(myArrayAdapter);

3. Compile and run!

Resources:
http://developer.android.com/reference/android/app/ListActivity.html#setListAdapter(android.widget.ListAdapter)