When I set a text in an EditText I do so.
EditText edit = new EditText(this);
edit.setId(0+4);
edit.setText("Meu Texto");
But I presumed to set the text by the id because in my case I have several editText called "edit". They have the same name but different ids. It is possible? Thank you in advance.