从一个活动传递到另一个位图图像(pass a bitmap image from one activ

2019-07-04 04:26发布

在我的应用我来自哪里,只要我选择一个图像,图像应该被发送到所选择的图像将被设置为background.However新的活动显示节数从画廊图像,我能够获得图像从图片库,但只要我选择一个事先申请crashes.Thanks

活性-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>

活性-2(其中,所选择的图像应该被设置为屏幕的背景图像的活动)

  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);
        }



    }

Answer 1:

有3个解决方案来解决这个问题。

1)首先转换成图像字节数组然后通入意向和在下一个活动获得从包字节数组,转换为图像(位图),并设置成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 = 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)先保存图像到SD卡,并在接下来的活动设置此图片为ImageView的。

3)合格的位图到意向并从包下一个活动得到的位图,但问题是,如果你的位图/图像大小是当时的图像不会在接下来的活动负载大。



Answer 2:

既然你是从库中检索图像,为什么不把ID传递到下一个活动和检索该活动的图像,而不是传递的形象呢? 这将帮助你在内存和性能。



Answer 3:

位图实现Parcelable,所以你总是可以通过它的意图。 试试下面的代码:

第一项活动。

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

在目标活动获得输出,试试:

第二项活动。

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

你总是使用getParcelableExtra(“键”),用于活动获得通过位图。



Answer 4:

我认为你可以做的定义位图静态和调用classname.bitmap你可以得到bitmap..and设置为下一个活动背景



Answer 5:

IGP概括起来讲清楚,但在我看来最有效的方式来做到这一点是通过将URI的图像到下一个活动,而不是位图本身。 实际上,我不知道是否有可能通过全位图(或者,转换的ByteArray)数据从一个活动到另一个使用意图 - 我相信这是一个极限的捆绑能有多少数据包含。

相反,通过您使用的是显示的第一个活动图像的参考。 我假设你正在使用某种延迟加载的? 如果不是这样,我强烈建议你做。 这样,你可以简单地重新查询通过URI的位图。

但是,我能够得到从图库中的图片,但只要我选择一个应用程序崩溃

我仍然困惑的是,这类问题是如何达到SO。 请检查日志,也许你自己看着办吧你自己。



Answer 6:

使用此您可以通过位图到另一个活动。

如果您使用的绘制比转换是绘制先位图。

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

对于使用意图使用这个下面的代码片段传递一个位图到另一个活动。

intent.putExtra("Bitmap", bitmap);

而对于获取该位图的意图在其他活动中使用此

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

按照此链接查看更多详细信息。



Answer 7:

我发现最简单的(但肯定不是最优雅的)的方法是使用类的静态成员。 例如:

class PassedData
{
    public Bitmap bm1, bm2, etc;

    private PassedData current;

    public static PassedData getCurrent() {return current;}

    public PassedData()
    {
        current = this;
    }
}

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



Answer 8:

活动

要通过Activites之间的位图

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");

如果您收到失败粘结剂交易,这意味着你是大元素从一个活动转移到另一个活动超过粘结剂交易缓存区。

因此,在这种情况下,你要压缩的位图作为一个字节的数组,然后解压缩在另一活动中 ,像这样的

在FirstActivity

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);

而在SecondActivity

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


文章来源: pass a bitmap image from one activity to another