1

我在意图的帮助下发送图像如下

Uri profileImage = Uri.parse("android.resource://Tset/res/drawable-hdpi/arr.jpeg");
            details.setType("image/png");
            details.putExtra(Intent.EXTRA_STREAM, profileImage);
            startActivity(details);

如何在接收端活动中获取图像路径?

4

5 回答 5

3

使用意图从当前活动中尝试此通行证图像网址

Intent myIntent = new Intent(this, MyImageViewActivity.class);
Bundle bundle = new Bundle();
bundle.putString("image", path);
myIntent.putExtras(bundle);
startActivityForResult(myIntent, 0);

这里的路径是

String path="android.resource://Tset/res/drawable-hdpi/arr.jpeg"

在您的接收活动中

Bundle bundle = this.getIntent().getExtras();
String path = bundle.getString("image");
于 2013-06-15T10:19:00.103 回答
2

最后我在图像ID的帮助下完成了它,如下所示!!感谢您的所有回复!!

  profilePictureID=R.drawable.image name;//name of image in drawable folder dont use extensions like.jpg and all  
  IntentObject.putExtra("ImageID",profilePictureID);
  startActivity(IntenetObject);

在接收活动中

 int pictureId=getIntent().getIntExtra("ImageID",0);
 profilePicture.setImageResource(pictureId);
于 2013-06-15T12:34:25.147 回答
1

在您的通话活动中...

 Intent i = new Intent(this, NextActivity.class);
 Bitmap b; // your bitmap
 ByteArrayOutputStream bs = new ByteArrayOutputStream();
 b.compress(Bitmap.CompressFormat.PNG, 50, bs);
 i.putExtra("byteArray", bs.toByteArray());
 startActivity(i);

...在您的接收活动中

if(getIntent().hasExtra("byteArray")) {
    ImageView previewThumbnail = new ImageView(this);
     Bitmap b = BitmapFactory.decodeByteArray(
     getIntent().getByteArrayExtra("byteArray"),0,getIntent().getByteArrayExtra("byteArray").length);        
     previewThumbnail.setImageBitmap(b);
}


   File imgFile = new  File(“/sdcard/Images/test_image.jpg”);
   if(imgFile.exists())
      Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
于 2013-06-15T09:52:13.513 回答
1

试试这个..

Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(path)), "image/png");
startActivity(intent);
于 2013-06-15T09:52:26.133 回答
1

您可以转换为 bytearray 并传递相同的内容。在下一个活动中解码并显示相同的内容。

使用意图传递图像

Intent i = new Intent(this, NextActivity.class);
Bitmap b; // your bitmap
ByteArrayOutputStream bs = new ByteArrayOutputStream();
b.compress(Bitmap.CompressFormat.PNG, 50, bs);
i.putExtra("byteArray", bs.toByteArray());
startActivity(i);

接受

if(getIntent().hasExtra("byteArray")) {
    ImageView previewThumbnail = new ImageView(this);
    Bitmap b = BitmapFactory.decodeByteArray(
        getIntent().getByteArrayExtra("byteArray"),0,getIntent().getByteArrayExtra("byteArray").length);        
    previewThumbnail.setImageBitmap(b);
}

如果您传递字符串 url

你如何将字符串从一个活动传递到另一个活动?

编辑:

传递uri

 Uri uri = Uri.parse("android.resource://com.example.passurl/drawable/ic_launcher");
 // com.example.passurl is the package name
 // ic_launcher is the image name
 Intent i = new Intent(MainActivity.this,NewActivity.class);
 i.setData(uri);
 startActivity(i); 

接受

ImageView iv= (ImageView) findViewById(R.id.imageView1); // initialize image view
if(getIntent().getData()!=null)
{
 Uri path = getIntent().getData();
 iv.setImageURI(path);  //set the image 
}
于 2013-06-15T09:59:14.947 回答