builder.setNegativeButton("Go", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface arg0, int arg1) {
             Intent intent = new Intent();
          //intent.setClass(this, TRo.class);
            intent.putExtra("year", mTouchYear);
            intent.putExtra("month", mTouchMonth);
            intent.putExtra("maxDay", mTouchDay);
            startActivityForResult(intent, TConstant.Setting);             
            }
            });
        builder.show();

 

다이어로그로 버튼클릭시 TRo.class 를 작동하게 하려는데요 굵은표시부분에서 오류가 나는데

 

저렇게 사용이 안된나요??