Issue: Passing large data to second Activity
I've got an strange issue. I was looking around the web but didn't find an answer. I'm still a beginner in android programming. So let's go: All I want to do is calling the second Activity with some data. It works fine with small data, but if the data gets large, the second Activity will not show and the first one finishes. Here's my code of the calling Method: Intent intent = new Intent(ActivitySearch.this,ActivityResults.class); Bundle bundle = new Bundle(); bundle.putParcelableArrayList("data", searchList); intent.putExtras(bundle); startActivity(intent); The part of receiving data is not