How to pass a ArrayList between activities

前端 未结 2 1600
死守一世寂寞
死守一世寂寞 2020-12-17 06:44

I have an ArrayList that I have populated using the method getBitmapFromAsset() and want to pass it via intent using a Bundle. Howeve

2条回答
  •  时光取名叫无心
    2020-12-17 06:50

    Bitmap implements Parcelable by default.

    Use Bundle.putParcelableArrayList(String key, ArrayList value):

    ArrayList bitmaps = new ArrayList();
    bitmaps.add(bitmap);
    bundle.putParcelableArrayList("names", bitmaps);
    

提交回复
热议问题