안드로이드 개발 질문/답변
(글 수 45,052)
private void fillData() {
SimpleAdapter mSchedule = new SimpleAdapter(this, items, R.layout.items_row,
new String[] { "ID", "LottoData" },
new int[] { R.id.id_cell, R.id.data_cell });
ListView list = (ListView)findViewById();
list.setAdapter(mSchedule);
}소스가 이해가 안되서 질문드립니다.
SimpleAdapter이게 무슨일을 하는지 모르겠어요
findViewById() 여기에 뭘 넣어야 하나요..



