«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

올해는 머신러닝이다.

[펌]SimpleCursorAdapter와 spinner 연결시 getSelectedItem() 본문

Android/Tip&Tech

[펌]SimpleCursorAdapter와 spinner 연결시 getSelectedItem()

행복한 수지아빠 2011. 5. 25. 15:36

SimpleCursorAdapter와 spinner 연결시 getSelectedItem() android

출처 : http://daeha.egloos.com/1139323

★ 현상
SimpleCursorAdapter와 spinner 연결해서 사용할 경우
Spinner.getSelectedItem()을 하면 Cursor가 넘어온다. 정확하게 말하면 SQLiteCursor...

Cursor에 들어있는 값을 가져오고 싶은데
어떻게 해야하나요?

★ 해결
((SQLiteCursor)spinner.getSelectedItem()).getString(1)

존나 촌스럽고 더티하다 -_-;;

하지만 일단되니 뭐...


좀 더 스마트한 방법 아시는분 댓글 좀 부탁드려여! ^^