El problema esta en el Activity, deberia ser algo asi:
Código JAVA:
Ver originalpublic class PruebaUsu extends Activity{
TextView textaco;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
boton
= (Button)findViewById
(R.
id.
boton); textaco = (TextView)findViewById(R.id.texto)
boton.
setOnClickListener(new View.
OnClickListener() { public void onClick
(View v
) { mostrar();
}
});
}
public void mostrar() {
textaco.setVisibility(2);
}
}