文字列の引渡し

文字列の引渡しにはintentメゾットを使った。

Intent intent = new Intent(this, ImageButtonEx.class);
intent.putExtra("skey", "hoge");

thisの部分に引渡しのクラス名、ImageButtonEx.classの部分に引渡しのクラスを指定。
その下の文は引渡し先の"skey"に"hoge"を代入している。


これで文字は引き渡せているけど…
引き渡した先のアクティブ実行どうするんだ…?