I\'ve got a problem with populating an edittext. Using the following code i can set the text just fine, however what i am trying to do is add to the edittext. For example th
You'd need editText.setText(editText.getText() + "string");.
editText.setText(editText.getText() + "string");
EditText et = (EditText) findViewById(R.id.editText1); et.setText(et.getText() + title);