文字列「タイトル」を送信するようにイメージビューを送信する必要がありますが、できません。メインアクティビティからセカンドアクティビティにイメージビュー (R.drawable.image) を送信するにはどうすればよいですか?
ありがとう
主な活動
public void NewActivity(View view){
Intent intent = new Intent(this, SecondActivity.class);
intent.putExtra("title", getString(R.string.title));
startActivity(intent);
}
第二の活動
@Override
public void onCreate(Bundle bundle)
{
super.onCreate(bundle);
setContentView(R.layout.pantalla);
Bundle extras = getIntent().getExtras();
if (extras == null)
{
return;
}
String title = extras.getString("title");
TextView textview = (TextView)findViewById(R.id.titulo);
textview.setText(title);
}