cursor = DBAdapter.getAllPeople2();
@SuppressWarnings("deprecation")
SimpleCursorAdapter cursorAdapter = 
new SimpleCursorAdapter(this, android.R.layout.simple_list_item_2, cursor, 
new String[] {"POSX","POSY"}, new int[] {R.id.text0 , R.id.text1} );
setListAdapter(cursorAdapter);



저렇게 SimpleCursorAdapter에 취소선이 섞여서 나오네여 저거 이유가 뭐죠??