My project\'s requirement is : edittext value is first entered by user and that same value will be visible in another activity\'s editext , which should be read only..
get the value of edit text by
String text = edit_text.getText.toString;
then pass it to other activity like
intent.putExtra("text", text);
In that activity get it onCreate through bundle like
Bundle extras = getExtra().getIntent();
String text = extras.getString("text");
now set this value in your edittext like
edit_text2.setText(text);
modify this code according to you.