package be.nikiroo.fanfix.reader.android; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.widget.TextView; public class SayIt extends Activity { public static final String MESSAGE = "be.nikiroo.testy.message"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_say_it); // Get the Intent that started this activity and extract the string Intent intent = getIntent(); String message = intent.getStringExtra(SayIt.MESSAGE); // Capture the layout's TextView and set the string as its text TextView textView = findViewById(R.id.textView); textView.setText(message); } }