7
"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); …