zacząłem naukę i rozwój Android am następstwie todolist przykład z książki:Co to jest "android.R.layout.simple_list_item_1"?
// 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);
Nie mogę zrozumieć, właśnie ten kod zwłaszcza ten wiersz:
android.R.layout.simple_list_item_1
Ale dlaczego jest to parametr? Chciałem tylko zaktualizować mój listview za pomocą mojej tablicy, a jedna z odpowiedzi pokazała to. Nie jestem pewien, dlaczego potrzebuję tego ... Oto moje pytanie. Dzięki! http://stackoverflow.com/questions/35098789/how-to-update-the-listview-according-to-arraylist/35099000?noredirect=1#comment57929962_35099000 –