나는 안드로이드 개발을 배우기 시작했고 책에서 할 일 목록을 따르고 있습니다.
// 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