Win a copy of Java Persistence with Spring Data and Hibernate this week in the Spring forum!
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

Lists data passed in Bundle returns empty

 
Greenhorn
Posts: 18
Android IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to pass few lists of values into a fragment through Bundle. However I have done the same before without any problems. It looks so silly - I can't figure out why the size of lists are shown 0 when we retrieve the bundle in fragment.

Pojo:

   

The part where I am putting data into Bundle. The size of `countriesFromBundle` is more than 0.

   


And this is where I am getting the empty lists, like for ex. the size of `countriesList` is 0.



   
 
Bartender
Posts: 1868
81
Android IntelliJ IDE MySQL Database Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You appear to be passing a fair amount of data around and this is not recommended

Android API wrote:For the specific case of savedInstanceState, the amount of data should be kept small because the system process needs to hold on
to the provided data for as long as the user can ever navigate back to that activity (even if the activity's process is killed).
We recommend that you keep saved state to less than 50k of data.


https://developer.android.com/guide/components/activities/parcelables-and-bundles.html

I think that the better solution would be to store the data in a database and then pass the primary key around.
Or possibly store the data in some temporary file and then access that data when you need/want to.

I know that there is a hard limit to the amount of data that you can send in a bundle around,
but I'm not too sure what it is as there are some conflicting reports out there.
 
Something must be done about this. Let's start by reading this tiny ad:
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic