最佳答案
我已经开始学习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