私はAndroid開発の学習を開始し、本のtodolistの例に従っています:
// 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);
私はこのコード、特にこの行を正確に理解できません:
android.R.layout.simple_list_item_1