1 package be
.nikiroo
.fanfix
.reader
.android
;
3 import android
.app
.Activity
;
4 import android
.content
.Intent
;
5 import android
.os
.Bundle
;
6 import android
.widget
.TextView
;
9 public class SayIt
extends Activity
{
10 public static final String MESSAGE
= "be.nikiroo.testy.message";
13 protected void onCreate(Bundle savedInstanceState
) {
14 super.onCreate(savedInstanceState
);
15 setContentView(R
.layout
.activity_say_it
);
17 // Get the Intent that started this activity and extract the string
18 Intent intent
= getIntent();
19 String message
= intent
.getStringExtra(SayIt
.MESSAGE
);
21 // Capture the layout's TextView and set the string as its text
22 TextView textView
= findViewById(R
.id
.textView
);
23 textView
.setText(message
);