Android Intent 传参 - Bitmap

如果要使用 Intent 来传递图片 (Bitmap) ,因为 Bitmap 默认实现了 Parcelable 接口,直接传递即可

Bitmap bitmap = null;
Intent intent = new Intent();
Bundle bundle = new Bundle();
bundle.putParcelable("bitmap", bitmap);
intent.putExtra("bundle", bundle);

这里就用 demo 演示了,其实就是设置一下 Bundle

Android 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.