안드로이드란 무엇입니까?R.layout.simple_list_item_1"?
안드로이드란 무엇입니까?R.layout.simple_list_item_1"? 저는 안드로이드 개발을 배우기 시작했고 책에서 토돌리스트의 예를 따르고 있습니다. // 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); 이 코드, 특히 이 줄은 정확히 이해할 수 없습니다. and..