android passing 2000 size array from one activity to another -
i need pass 3 arry size approx 2000 3000+ string each... possible? getting large transaction error
i need
intent = new intent(getactivity(), test_my_paging_activity.class); i.putextra("string-array", android_img_array); i.putextra("string-array_id", array_id); i.putextra("string-array_thumb", array); // getactivity().finish(); startactivity(i); bundle b = this.getintent().getextras(); array = b.getstringarray("string-array"); array_id = b.getstringarray("string-array_id"); array_thumb = b.getstringarray("string-array_thumb");
i don't know usage of these arrays, but, may implement singleton storage class , , read 3-arrays in second activity.
Comments
Post a Comment