Zacząłem uczyć się programowania na Androida i podążam za przykładem todolisty z książki:
// Create the array list of to do items
final ArrayList<String> todoItems = new ArrayList<String>();
// Create the array adapter to bind the array to the listView
final ArrayAdapter<String> aa;
aa = new ArrayAdapter<String>( this,
android.R.layout.simple_list_item_1,
todoItems
);
myListView.setAdapter(aa);
Nie rozumiem dokładnie tego kodu, szczególnie tej linii:
android.R.layout.simple_list_item_1