J'ai commencé à apprendre le développement Android et je suis un exemple de todolist d'un livre:
// 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);
Je ne peux pas comprendre exactement ce code, en particulier cette ligne:
android.R.layout.simple_list_item_1