Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个从画廊中选择的位图,它正在被编辑,比如贴上贴纸、调整色调、亮度……添加颜色等。它是一个照片编辑应用程序……一切正常,我的最后一个问题是我该怎么做使位图保存,以便进入下一个活动
喜欢,,
在我上次分享你制作的图像的活动中,有一个 imageview,它正在工作,它显示你从画廊导入的位图,但它没有被编辑,就像它显示原始位图而不是我编辑的那个..
当他们单击编辑活动中完成的按钮时我该currentBitmap怎么做
currentBitmap
尝试这个
//create a class in your package class objectclass{ public static Bitmap bmp; } //save your previous activity bitmap like this .... objectclass.bmp = b;//your bitmap .... //use in another activity like this Bitmap b1 = objectclass.bmp;
希望帮助