ArrayAdapter 샘플 코드
public class ArrayAdapterTest2 extends ListActivity {
ArrayList<String> aList = new ArrayList<String>();
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
for(int i=0; i<100; i++){
aList.add("haha"+i);
}
ArrayAdapter<String> aA =
new ArrayAdapter<String>(this, R.layout.list_item, aList);
setListAdapter(aA);
ListView lv = getListView();
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// When clicked, show a toast with the TextView text
Toast.makeText(getApplicationContext(),
((TextView) view).getText(), Toast.LENGTH_SHORT).show();
}
});
}
}