Intent intent = new Intent(this, NewActivity.class);
intent.putExtra("BitmapImage", bitmap);
Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");
2. 创建一个blank drawable 然后satBar.setProgressDrawable(invisibleBackground);
也许这样也可以setBackgroundDrawable(null)
本文介绍了如何在Android应用程序中通过Intent在不同Activity间传递Bitmap图像数据,并探讨了使用Drawable进行界面元素设置的方法。
4083

被折叠的 条评论
为什么被折叠?



