Ver Mensaje Individual
  #12 (permalink)  
Antiguo 23/05/2011, 11:58
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 10 meses
Puntos: 845
Respuesta: Error de emulador y no funciona la aplicacion

El problema esta en el Activity, deberia ser algo asi:

Código JAVA:
Ver original
  1. public class PruebaUsu extends Activity{
  2.  
  3.     Button boton;
  4.     TextView textaco;
  5.    
  6.     @Override
  7.     public void onCreate(Bundle savedInstanceState) {
  8.  
  9.         super.onCreate(savedInstanceState);
  10.         setContentView(R.layout.main);
  11.  
  12.         boton   = (Button)findViewById(R.id.boton);
  13.         textaco = (TextView)findViewById(R.id.texto)
  14.  
  15.         boton.setOnClickListener(new View.OnClickListener() {
  16.               public void onClick(View v) {
  17.                 mostrar();
  18.               }
  19.         });
  20.     }
  21.    
  22.     public void mostrar() {
  23.         textaco.setVisibility(2);  
  24.     }
  25. }
__________________
http://es.phptherightway.com/
thats us riders :)