parcelable
Passing a reference to a Raw video file through Intent and using it in another activity
In my current working code, I pass the reference of an image from a screen that shows some thumbnails. When the thumbnail is selected, the image id is stored and then used in a new activity. Now, when[详细]
2023-03-09 02:42 分类:问答Using protobuffers instead of Parcelables in Android intent extras?
Would it be a good idea to use protocol buffer o开发者_如何学编程bjects (serialized to byte arrays) to pass as intent extras between Android activities instead of implementing Parcelable on classic PO[详细]
2023-03-06 16:15 分类:问答Some parcelables objects put together in an Intent/bundle could be interfere themselves and to compromise the read of Intent/Bundle?
Some parcelables objects put together in an Intent/bundle could be interfere themselves and to compromise the read of Intent/Bundle?[详细]
2023-03-05 06:22 分类:问答Help with passing ArrayList and parcelable Activity
So I\'ve been googling most of yesterday and last nite and just can\'t seem to wrap my head around how to pass an arraylist to a subactivity. There are tons of examples and snippets passing primitive[详细]
2023-03-01 13:00 分类:问答Benefit of using Parcelable instead of serializing object
As I understand, Bundle and Parcelable belongs to the way Android performs serialization in. It is used for example in passing data between activities. But I wonder, if there are any benefits in using[详细]
2023-02-21 23:02 分类:问答I need to create a list based on the results of an ifStatement
I have a question for you. I have a situation where a list will be generated based on the results of an ifStatement. My ifStatement is based on whether a checkbox is checked. If it is, I want a variab[详细]
2023-02-21 02:50 分类:问答Arraylist only retrieves the last value
Hi I am passing an arraylist from one activity to another using Parcelable.. Now the problem is that when I click on BILL, all the rows are populated with the last value of the arraylist..So I guess[详细]
2023-02-21 00:57 分类:问答Sending image from drawable to another app/service
I have a central application which is going to receive messages f开发者_JS百科rom various services and construct dynamicaly a notification (up to 3 or 4 informations from the services in the notificat[详细]
2023-02-20 21:09 分类:问答Efficient method to access data across activities
I have a small app that records messages and stores them in an object which implements Parcelable.In the app I have a LOT of messages (about 2000) and it takes a considerable amount of time passing be[详细]
2023-02-17 13:36 分类:问答Using Parcelable on a Library Class
I want to send an object between Activities. Reading up on this i have come to conclusion that using Parcelable is the best way to go as it has the least performance impacts. The reason i want to do t[详细]
2023-02-15 01:20 分类:问答