2012-03-05 39 views
5

Estoy creando un cuadro de diálogo de control de brillo. Sin embargo, el problema que estoy teniendo es que cuando pongo TextView continuación seekbar que provoca este error:android.widget.SeekBar no se puede convertir a android.widget.TextView

android.widget.SeekBar cannot be cast to android.widget.TextView

Por alguna razón, parece que funciona cuando el posicionamiento en .xml sigue a continuación seekbar TextView.

Aquí hay un código:

LayoutInflater li_brightness = (LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE); 
      View v_brightness = li_brightness.inflate(R.layout.options_dialog_brightness, (ViewGroup)findViewById(R.id.ll_brightness_layout)); 
      bright_textView = (TextView)v_brightness.findViewById(R.id.brightness_text); 
      brightBar = (SeekBar)v_brightness.findViewById(R.id.seekbar_brightness); 
      confirm_brightness = (Button)v_brightness.findViewById(R.id.button_brightness); 



      cResolver = getContentResolver(); 

      window = getWindow(); 

      brightBar.setMax(100); 
      brightBar.setProgress(50); 
      brightBar.setKeyProgressIncrement(1); 

      bright_textView.setText("50".toString()); 


      brightBar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() { 

       public void onStopTrackingTouch(SeekBar seekBar) { 
        // TODO Auto-generated method stub 

       } 

       public void onStartTrackingTouch(SeekBar seekBar) { 
        // TODO Auto-generated method stub 

       } 

       public void onProgressChanged(SeekBar seekBar, int progress, 
         boolean fromUser) { 
        // TODO Auto-generated method stub 
        float BackLightValue = (float)progress/100; 
        if(BackLightValue <= 0){ 
         bright_textView.setText(String.valueOf(BackLightValue)); 
        } 


         WindowManager.LayoutParams layoutParams = getWindow().getAttributes(); 
         layoutParams.screenBrightness = BackLightValue; 
         getWindow().setAttributes(layoutParams); 
       } 
      }); 
+0

Agregue logcat y XML, creo que no estoy seguro, el problema se debe a su ID del archivo de diseño XML. Usted le da el id de textview a Seekbar ¡compruébelo! –

Respuesta

10

intentar limpiar su proyecto (Proyecto> Limpiar de Eclipse o ant clean desde la línea de comandos), y ver si se aclara su problema. A veces, el sistema de compilación no se sincroniza con los valores de R, y este tipo de error es uno de los síntomas.

+0

Tiene toda la razón. Por alguna razón, intenté esto antes de que no funcionara. – wesdfgfgd

Cuestiones relacionadas