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
Should be as simple as:
editText.setText("hello");
In your code:
EditText editText=(EditText)findViewById(R.id.x); editText.setText("hello");