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..
Based on Lucifer's answer you could use a TextView in the second activity:
First Activity:
Intent intent = new Intent ( FirstAcvity.this, SecondActivity.class );
intent.putExtra ( "text", editText.getText().toString() );
startActivity(intent);
Second Activity:
Intent i = getIntent();
tv.setText(i.getStringExtra("text"); //tv is the TextView