Why isn't getText() returning the value I just provided to setText?
mEditText.setText("150");
String text = mEditText.getText().toString(); //result: "6"!
Why isn't getText() returning the value I just provided to setText?
mEditText.setText("150");
String text = mEditText.getText().toString(); //result: "6"!