You are trying to add a string to an EditText:
A=""+e;
This can’t be done.
You probably want to add a string to a string, instead:
A = "" + e.getText().toString();
solved make a variable final in Android Studio
You are trying to add a string to an EditText:
A=""+e;
This can’t be done.
You probably want to add a string to a string, instead:
A = "" + e.getText().toString();
solved make a variable final in Android Studio