안녕하세요, 안드로이드 초보입니다~
간단한 지뢰 찾기 프로그램을 만들어보려고 하는데 문제가ㄷㄷㄷ

Button을 상속 받아서 bombButton을 만드는데, 메소드 오버라이딩 하지 않고 인스턴스 변수만 추가했습니다.
bombORnot 은 해당 셀이 폭탄인가 아닌가 나타내고, nearbyBombs는 주변에 폭탄이 몇 개 있나 저장합니다.
public class bombButton extends Button {
public boolean bombORnot;
public int nearbyBombs;
public bombButton(Context context) {
  super(context);
  // TODO Auto-generated constructor stub
  bombORnot=false;
  nearbyBombs=0;
 }
}

그리고 main.xml 에 <bombButton> 태크를 써서 버튼 9개를 레이아웃 안에 넣었습니다.
<bombButton android:text=" " android:id="@+id/Button01" android:layout_width="40px" android:layout_height="40px"></bombButton> 
<bombButton android:text=" " android:id="@+id/Button02" android:layout_width="40px" android:layout_height="40px"></bombButton> 
<bombButton android:text=" " android:id="@+id/Button03" android:layout_width="40px" android:layout_height="40px"></bombButton> 
...

그리고 onCreat() 에서 리스너도 정해줬습니다.
        ....
        btTiles[0] = (bombButton)findViewById(R.id.Button01); 
        btTiles[1] = (bombButton)findViewById(R.id.Button02);
        btTiles[2] = (bombButton)findViewById(R.id.Button03);
         ...       
        int i;
        for(i=0;i<9;i++)
         btTiles[i].setOnClickListener(on_Clicked);
         ...

해서 돌리면 런타임 에러가 납니다...
소스엔 문제가 없다는데 실행하면 시작하자마자 끗 ㄷㄷㄷㄷ
아직 이클립스 사용이 익숙하지 못한지라 디버그 모드로 돌려도 잘 모르겠네요--;;
하지만 리소스를 못찾겠다는 말이 반복적으로 나옵니다..

제가 뭔가 빠뜨리고 있나요?