Buenos días soy nuevo en android, ya lo dije anteriormente, tengo un problema con una recuperación elemental de string a integer, de un EditText a un TexView
cuando hago esto :
declaración :
Código JAVA:
Ver originalfinal TextView view1= (TextView) findViewById(R.id.view1);
view1.setText(" ... ".toString().trim());
final EditText txtTexto = (EditText) findViewById(R.id.editText1);
txtTexto.setText("");
// luego quiero introducir un valor de la editbox a texview, y esta línea me hace que el programa se cierre ... por qué ?
Solo paso integer, ja que le di al EditBox le puse al inputype number
---Con estos no me funciona
Integer.parseInt
Integer.valueOf
--- Si
view1.setText(txtTexto.getText().toString()); pero yo quiero hacer cálculos
Error : The aplication x has stopped unexpectedly. Please try again
Yo le paso valores a la caja y tiene que enviar en el texview