আমি অ্যান্ড্রয়েড বিকাশ শিখতে শুরু করেছি এবং একটি বই থেকে একটি টডলিস্ট উদাহরণ অনুসরণ করছি:
// 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