public void onItemSelected(AdapterView<?> parent, View v, int position, long id) {
CharSequence name;
name = adspin.getItem(position);
if(name.equals("대한민국")){
selText.setText("원");
} else if(name.equals("미     국")){
selText.setText("달러");
}
}

여기서 대한민국이랑 일치하면 원

미국이랑 일치하면 달러를 표시하고싶은데 계속 원 만 떠있네요..ㅠㅠ

어떻게 수정해야 각각 이벤트가 발생될까요 ㅠㅠㅠ

멍청해서 죄송합니다.ㅠ
도움좀 부탁드립니다 ㅠㅠ