什么是“ android.R.layout.simple_list_item_1”?

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


凤凰求蛊
浏览 627回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android