尝试使用
Bundle.Serializable传递可序列化的列表:
Bundle bundle = new Bundle();bundle.putSerializable("value", all_thumbs);intent.putExtras(bundle);
并在SomeClass活动中将其获取为:
Intent intent = this.getIntent();Bundle bundle = intent.getExtras();List<Thumbnail> thumbs= (List<Thumbnail>)bundle.getSerializable("value");
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)