position값 나오게 하는 건데 에러가 생김니다

고수님들 도와주세요

 

 

 

rivate OnItemSelectedListener choice_type = new OnItemSelectedListener(){
   
 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
    switch(position){
       case (0):
         if(D)Log.d((String) TAG,"ListCheck_01");
         Intent intent_01 = new Intent(SpinnerChoice.this,tjdoddmatlr.class); ==>new Intent(SpinnerChoice.this,tjdoddmatlr.class);에러부분입니다
          startActivity(intent_01);
          break;
       case (1):
           if(D)Log.d((String) TAG,"ListCheck_02");
           Intent intent_02 = new Intent(SpinnerChoice.this,didtlr.class); ==>new Intent(SpinnerChoice.this,didtlr.class); 에러부분입니다
        break;
       case (2):
           if(D)Log.d((String) TAG,"ListCheck_03");
           Intent intent_03 = new Intent(SpinnerChoice.this,dlftlr.class); ==>new Intent(SpinnerChoice.this,dlftlr.class);에러부분입니다
        startActivity(intent_03);
        break;
       case (3):
           if(D)Log.d((String) TAG,"ListCheck_04");
           Intent intent_04 = new Intent(SpinnerChoice.this,wndtlr.class); =>new Intent(SpinnerChoice.this,wndtlr.class); 에러부분입니다
        startActivity(intent_04);
        break;
    }}
    public void onNothingSelected(AdapterView<?> parent) {
}};}

재가 이제 막 시작이라 모릅니다 고수님들 도와주세요~~~~