我已经开始学习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