我已经开始学习Android开发,并且正在关注一本书中的todolist示例:// Create the array list of to do itemsfinal ArrayList<String> todoItems = new ArrayList<String>();// Create the array adapter to bind the array to the listViewfinal 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
3 回答
- 3 回答
- 0 关注
- 626 浏览
添加回答
举报
0/150
提交
取消