@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        if(D) Log.e(TAG, "+++ ON CREATE +++");

        // Set up the window layout
        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
      
        setContentView(R.layout.main2);
       
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);

        // Set up the custom title
        mTitle = (TextView) findViewById(R.id.title_left_text);
        mTitle.setText(R.string.app_name);
        mTitle = (TextView) findViewById(R.id.title_right_text);
                               

        // Get local Bluetooth adapter
        mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

        // If the adapter is null, then Bluetooth is not supported
        if (mBluetoothAdapter == null) {
            Toast.makeText(this, "Bluetooth is not available", Toast.LENGTH_LONG).show();
            finish();
            return;
        }
               
        //spinner부분
        ColorSpinner=(Spinner) findViewById(R.id.spinner_color);
        Choose_color=ArrayAdapter.createFromResource(JoljakActivity.this,R.array.colorchoose_array, android.R.layout.simple_spinner_item);
        Choose_color.setDropDownViewResource(android.R.layout.simple_spinner_item);
        ColorSpinner.setAdapter(Choose_color);
        ColorSpinner.setOnItemSelectedListener(this);
       
        //라디오버튼
        Eventgroup = (RadioGroup)findViewById(R.id.EventGroup);
        //Eventgroup.setOnCheckedChangeListener(this);
        Eventgroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
           
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                // TODO Auto-generated method stub
                switch(checkedId){
                case R.id.radioButton1:
                    ChoosedRadio=R.id.radioButton1;
                    break;
                case R.id.radioButton2:
                    ChoosedRadio=R.id.radioButton2;
                    break;
                }   
            }
        });
      }

Spinner같은경우에는     public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2,long arg3)
이 메서드에서 해결이 잘되더라고요 근데 RadioButton은 주소값이 전혀 안읽히네요.
Spinner처럼 같은방식으로했는데도 안되고 위에 방식으로 해도 전혀 안읽힙니다.
디버그해도 리스너 부분을 전혀 지나치지 않네요.
졸작이라 급한데 이거 때문에 안되서 미치겠습니다..
이게 되야지 밑에 부분에서 제어를 하는데 안되네요.
흑흑 누가좀 제발 해결해주세요.