5

文字列「タイトル」を送信するようにイメージビューを送信する必要がありますが、できません。メインアクティビティからセカンドアクティビティにイメージビュー (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); 
}
4

4 に答える 4

0

Drawable は、アプリケーションのすべてのアクティビティで使用できます。 あるアクティビティから別のアクティビティに送信する代わりに、それらに直接
アクセスできます。

于 2013-04-03T08:42:18.700 に答える