Tagged Questions
-4
votes
2answers
126 views
unable to retrieve Parcel implemented class from one activity to another activity
I have a class called Weekly Result which implements Parcel Interface. I am having a problem retrieving the parcel object when I pass it to another activity.
Below is my weeklyResult Class
public ...
3
votes
2answers
551 views
Passing custom parcelable object extra or in ArrayList to RemoteViewsService breaks appwidget
Basically what i want to do, is to pass a custom parcelable object via an intent, to the RemoteViewsService and thus to my RemoteViewsFactory. For some reason, this simply doesnt work :S Whenever i ...
2
votes
1answer
133 views
Unparcel Error Android
I am running into an issue where instantiating an Object from a Parcel is throwing a NullPointerException. My Class Contact implements Parcelable, contains a CREATOR, and all the hookups seem to work. ...
0
votes
1answer
290 views
Getting getParcelableArrayListExtra returns in NullPointerException?
The Parcelable class is :
package mobile.bh.classes;
import java.util.List;
import mobile.bh.activities.MethodStep;
import android.content.Context;
import android.graphics.Bitmap;
import ...
0
votes
1answer
131 views
Android is Parcelable data available after garbage collection?
Is parcelable data persistent? I have some variables that I destroy in android lifecycle functions such as onDestroy() , but what about things written to parcelable?
Ultimately I would want to pass ...
0
votes
1answer
185 views
Syntax for creating a Object implementing Parcelable from getParcelableExtra(intent_name)
I am implementing the DataDroid model of RESTful communication and I have come across a compiler error while implementing my SearchCriteria. The problem is that in order to pass the SearchCriteria ...
0
votes
1answer
595 views
Android Parcelable Parcel HashMap
I want to use Parcelable instead of Serializable in android, because it is faster and recommended.
My question is, it seems i cannot parcel a LinkedHashMap, a class provided by Java, right?
So for ...
6
votes
3answers
8k views
Android Parcelable and Serializable
So i know it is recommended to use Parcelable instead of Serializable in android, because it is faster.
My question is, it is impossible to avoid using Serializable right?
If i have a custom object i ...
0
votes
2answers
766 views
Android: Having Difficulty passing an Object from one activity to another using Parcel
I've read MANY articles on how to use Parcel and I've used it in my app but it isn't working. I've just created an activity where you can connect to a computer using Sockets. I've opened a ...