I have an app with an EditText and a button named \"forward\". All I want is just when I type \"a\" in the EditText and click the button, the word \"b\
EditText
Try this:
edt.setText(Character.toString((char)(edt.getText().charAt(0) + 1)));