0

インテンションから文字列をインポートし、その文字列を別のインテンションに入れようとしています。今、putExtra メソッドで奇妙なエラーが発生しています。マウスカーソルを左側の行のエラーマークの上に置くと、次のように表示されます。

" この行に複数のマーカーがあります: - '(' トークンの
構文エラーです。このトークンを削除してください - ')' トークンの構文エラーです。このトークンを削除してください "

明らかに括弧が必要なので、それらを削除しても問題は解決しません。誰もこれに遭遇したことがありますか?

public class CountDown extends Activity {
public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";
private Handler handler = new Handler();

//import the intention from Starting Point Activity
Intent intention1=getIntent();
final String message = intention1.getStringExtra(StartingPoint.EXTRA_MESSAGE);



//Create the intention that is supposed to go to the Display Message Activity
Intent broadcastSM = new Intent(this, DisplayMessageActivity1.class);
broadcastSM.putExtra(EXTRA_MESSAGE, message);
4

0 に答える 0