インテントとバンドルを介してアンドロイドの2つの異なるアクティビティにテキストビューの値を取得する方法教えてください..私のコードは以下の通りです:
Activity1.java
Intent intent = new Intent(Activity1.this,Activity2.class);
Bundle bundle = new Bundle();
bundle.putString("title",ed1.getText().toString());
intent.putExtras(bundle);
startActivity(intent);
Activity2.java
Intent intent = new Intent(Activity1.this,Activity2.class);
Bundle bundle = this.getIntent().getExtras();
String title = bundle.getString("title");
tv = (TextView)findViewById(R.id.projectTitle);
tv.setText(title);
bundle.putString("tit",title);
Activity3.java B
undle bundle = this.getIntent().getExtras();
tv = (TextView)findViewById(R.id.Projecttitle);
tv.setText(til);
アクティビティ1とアクティビティ2ではうまく機能しますが、アクティビティ2とアクティビティ3の間では機能しません