ฉันเริ่มเรียนรู้การพัฒนา 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