Я начал изучать разработку Android и следую примеру Todolist из книги: < /p>
// Create the array list of to do items
final ArrayList todoItems = new ArrayList();
// Create the array adapter to bind the array to the listView
final ArrayAdapter aa;
aa = new ArrayAdapter( this,
android.R.layout.simple_list_item_1,
todoItems
);
myListView.setAdapter(aa);
< /code>
Я не могу точно понять этот код, особенно эта строка: < /p>
android.R.layout.simple_list_item_1
Подробнее здесь: https://stackoverflow.com/questions/366 ... ist-item-1