android 将位图图像从一个活动传递到另一个活动

kknvjkwl  于 2023-01-07  发布在  Android
关注(0)|答案(8)|浏览(164)

在我的应用程序中,我正在显示来自图库的图片数量,只要我选择一张图片,该图片就应该发送到新的活动中,所选的图片将被设置为背景。但是,我可以从图库中获取图片,但只要我选择一张图片,应用程序就会崩溃。提前感谢
活动-1(图像显示在图库中,所选图像发送到新活动)

public class Gallery extends Activity {

private static int RESULT_LOAD_IMAGE = 1;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.gallery);

        Button buttonLoadImage = (Button) findViewById(R.id.buttonLoadPicture);

        buttonLoadImage.setOnClickListener(new View.OnClickListener() {

            public void onClick(View arg0) {

                Intent i = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);

                startActivityForResult(i, RESULT_LOAD_IMAGE);
            }
        });
    }


    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) {




            Uri contentUri = data.getData();          
            String[] proj = { MediaStore.Images.Media.DATA };         
            Cursor cursor = managedQuery(contentUri, proj, null, null, null);         
            int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);         
            cursor.moveToFirst();         
            String tmppath = cursor.getString(column_index);           
            Bitmap croppedImage = BitmapFactory.decodeFile(tmppath);

            // Bitmap croppedImage = BitmapFactory.decodeFile(croppedImage);
            Intent intent = new Intent(Gallery.this,GesturesActivity.class);
            intent.putExtra("bmp",croppedImage);
            startActivity(intent);

            Log.v("sending image","sending image");

        }

    }
}

活动-1(XML)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
    >
    <ImageView
            android:id="@+id/imgView"
            android:layout_width="fill_parent"
            android:layout_weight="1" android:layout_height="wrap_content"></ImageView>
    <Button 
            android:layout_height="wrap_content" 
            android:text="Load Picture" 
            android:layout_width="wrap_content" 
            android:id="@+id/buttonLoadPicture" 
            android:layout_weight="0" 
            android:layout_gravity="center"></Button>
</LinearLayout>

Activity-2(应将所选图像设置为屏幕背景图像的Activity)

public class GesturesActivity extends Activity {

        private final int MENU_CAMERA = Menu.FIRST;

        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            requestWindowFeature(Window.FEATURE_NO_TITLE);

            Bitmap bmp = (Bitmap)this.getIntent().getParcelableExtra("bmp");
            BitmapDrawable background = new BitmapDrawable(bmp);
            getWindow().setBackgroundDrawable(background);  //background image of the screen


            Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.advert);
            View view = new SandboxView(this, bitmap);

            setContentView(view);
        }


        public boolean onPrepareOptionsMenu(Menu menu) {
            menu.clear();

                menu.add(0, 11, 0, "Take Snapshot");

                    return super.onPrepareOptionsMenu(menu);
        }

        public boolean onOptionsItemSelected(MenuItem item) {

            return super.onOptionsItemSelected(item);
        }


    }
iqjalb3h

iqjalb3h1#

有3种解决方案可解决此问题。
1)首先将图像转换为字节数组,然后传递到Intent,在下一个Activity中,从Bundle获取字节数组,然后转换为图像(位图)并设置到ImageView中。
将位图转换为字节数组:-

Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();

将字节数组传入Intent:-

Intent intent = new Intent(this, NextActivity.class);
intent.putExtra("picture", byteArray);
startActivity(intent);

从包中获取字节数组并转换为位图图像:-

Bundle extras = getIntent().getExtras();
byte[] byteArray = extras.getByteArray("picture");

Bitmap bmp = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
ImageView image = (ImageView) findViewById(R.id.imageView1);

image.setImageBitmap(bmp);

2)首先将图像保存到SDCard中,并在下一个活动中将该图像设置到ImageView中。
3)将位图传递到Intent并在下一个Activity中从bundle获取位图,但问题是,如果您的位图/图像大小当时很大,则不会在下一个Activity中加载图像。

bzzcjhmw

bzzcjhmw2#

既然你正在从Gallery中检索图像,为什么不把id传递给下一个Activity,并在那个Activity中检索图像,而不是传递图像呢?这将有助于你的内存和性能。

c2e8gylq

c2e8gylq3#

Bitmap实现了Parcelable,因此您始终可以在Intent中传递它。请尝试以下代码:

第一个活动。

Intent mIntent = new Intent(this, ActivityTwo.class);
mIntent.putExtra("bmp_img", bmp);

要获取目标活动中的输出,请尝试:

第二项活动。

Bitmap mBitmap = (Bitmap) intent.getParcelableExtra("bmp_img");

您始终使用**getParcelableExtra(“key”)**获取活动中传递的位图。

8oomwypt

8oomwypt4#

活动
在活动之间传递位图

Intent intent = new Intent(this, Activity.class);
intent.putExtra("bitmap", bitmap);

在活动类中

Bitmap bitmap = getIntent().getParcelableExtra("bitmap");

碎片
在片段之间传递位图

SecondFragment fragment = new SecondFragment();
Bundle bundle = new Bundle();
bundle.putParcelable("bitmap", bitmap);
fragment.setArguments(bundle);

在SecondFragment内部接收

Bitmap bitmap = getArguments().getParcelable("bitmap");

如果您得到失败的绑定器事务,这意味着您将大型元素从一个活动传输到另一个活动,从而超出了绑定器事务缓冲区。

在这种情况下,您必须将位图压缩为字节数组,然后在另一个活动中解压缩,如下所示
在第一个活动中

Intent intent = new Intent(this, SecondActivity.class);

ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPG, 100, stream);
byte[] bytes = stream.toByteArray(); 
intent.putExtra("bitmapbytes",bytes);

在第二个活动中

byte[] bytes = getIntent().getByteArrayExtra("bitmapbytes");
Bitmap bmp = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
fzsnzjdm

fzsnzjdm5#

我认为您可以将位图定义为静态,然后通过调用classname.bitmap来获取位图,并在下一个活动中设置为背景

fzsnzjdm

fzsnzjdm6#

IGP总结得很清楚,但在我看来,最有效的方法是将图像的URI传递给下一个Activity,而不是位图本身。实际上,我不确定是否有可能使用Intents将数据的整个位图(或转换后的ByteArrays)从一个Activity传递给另一个Activity, -我相信Bundle可以包含多少数据是有限制的。
相反,在第一个Activity中传递用于显示图像的引用。我假设您使用了某种延迟加载?如果没有,我强烈建议您这样做。这样您就可以通过URI重新查询位图。
然而,我能够从画廊获得图像,但只要我选择一个应用程序崩溃
我仍然不明白这类问题是如何到达SO的。检查日志,也许你可以自己解决它。

ffdz8vbo

ffdz8vbo7#

我发现最简单(但绝对不是最优雅)的方法是使用静态类成员。

class PassedData
{
    public Bitmap bm1, bm2, etc;

    private PassedData current;

    public static PassedData getCurrent() {return current;}

    public PassedData()
    {
        current = this;
    }
}

然后,每个活动都可以引用PassedData.getCurrent()。

ncgqoxb0

ncgqoxb08#

使用这个你可以传递位图到另一个活动。
如果你使用的是可绘制的,那么先把可绘制的转换成位图。

Bitmap bitmap = ((BitmapDrawable)d).getBitmap();

要使用Intent将该位图传递给另一个Activity,请使用以下代码片段。

intent.putExtra("Bitmap", bitmap);

对于在另一个Activity中获取位图Intent,请使用

Bitmap bitmap = (Bitmap)this.getIntent().getParcelableExtra("Bitmap");

相关问题