What is the difference between these in Android / Java? Which is more efficient and what tool did you use to find the differences?
String text = input.getText().toString();
String text = String.valueOf(input.getText());
String text = input.getText() + "";
assuming input is not null...
EDIT: input.getText()
returns an Editable
.