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..
Hope this will help full for you.
This code for second activity where you want to show the Data from First Activity.
String mUrl = getIntent().getStringExtra("LinkingWord");
editTextURL.setText(getIntent().getStringExtra("LinkingWord"));
Don't forget to call EditText ID
EditText editTextURL = findViewById(R.id.edit_url);
Easy Peasy
HappyCoding