Bom dia Pessoal, estou com um pequeno probleminha ao pegar o texto de uma caixa(EditText), estou tentando pegar o texto da caixa pelo ID dela e jogar dentro de uma variável int, mas estou convertendo, e mesmo assim está dando esse erro: There is no applicable method to ‘(android.text.Editable)’
Segue o código
public void mudar(View v){
Button btnMudar = (Button) findViewById(R.id.botaoMudar);
TextView textoMudar = (TextView) findViewById(R.id.txtResultado);
EditText campoum = (EditText) findViewById(R.id.campoUm);
int cxUm = Integer.parseInt(campoum.getText());
textoMudar.setText(cxUm);
}