我是安卓新手。我想做的是愚蠢的吗?我在一个活动(EditPhoto)中建立了一个意图,如下所示:
//Defining intent for loading image to the edit page
Intent recentPhoto = new Intent(this, ImportPhoto.class);
//Defining byte stream of image chosen
ByteArrayOutputStream bs = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.PNG, 50, bs);
//Transforming image to EditPhoto class in byte stream
recentPhoto.putExtra("byteArray", bs.toByteArray());
//Starting the intent
startActivity(recentPhoto);
我正在尝试从另一个活动(ImportPhoto)的片段(FirstFragment)接收它,如下所示:
// Getting the image back imported from EditPhoto page
final Bitmap photo = BitmapFactory.decodeByteArray(getIntent().
getByteArrayExtra("byteArray"),
0,getIntent().getByteArrayExtra("byteArray").length);
//Displaying the image in the image viewer
viewGalleryImages.setImageBitmap(photo);
由于片段类是静态的,它说“无法从类型 Activity 对非静态方法 getIntent() 进行静态引用”。
我尝试使用捆绑包并将参数设置为片段,但再次遇到同样的问题。
另外,我尝试过 getActivity().getIntent.... 并且还像这样 ((ImportPhoto)getActivity()).getIntent...
任何形式的帮助将不胜感激。提前致谢。