android – 如何将图像从一个活动发送到其他活动?

前端之家收集整理的这篇文章主要介绍了android – 如何将图像从一个活动发送到其他活动?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我需要发送一个像我发送字符串“标题”的imageview,但我不能,我怎样才能将主视图中的imageview(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); 
}
最佳答案
解决方案1 ​​:(对于不可绘制的资源)

您可以将路径文件名作为字符串发送.就像你的例子中的“标题”一样.

如果您对ImageView使用filepath有问题.
Show Image View from file path?

解决方案2 :(适用于简易和轻便的方式)

发送资源整数值,如:

主要活动

Intent intent = new Intent(this,SecondActivity.class); 
intent.putExtra("resourseInt",R.drawable.image);    
startActivity(intent); 

第二次活动

@Override 
public void onCreate(Bundle bundle) 
{ 

    super.onCreate(bundle); 
    setContentView(R.layout.pantalla); 
    Bundle extras = getIntent().getExtras(); 
    if (extras == null) 
    { 
        return; 
    } 
    int res = extras.getInt("resourseInt"); 

    ImageView view = (ImageView) findViewById(R.id.something); 

    view.setImageResourse(res); 
}
原文链接:https://www.f2er.com/android/430872.html

猜你在找的Android相关文章