I need to pass a reference to the class that does the majority of my processing through a bundle.

The problem is it has nothing to do with intents or contexts and has a large amount of non-primitive objects. How do I package the class into a parcelable/serializable and pass it to a startActivityForResult?

link|improve this question

1  
"I need to pass a reference to the class that does the majority of my processing through a bundle" -- why? – CommonsWare Nov 22 '10 at 20:27
I have an object (DataManager), it handles a server and runs a few backends for some GUI's. When ever a new connection is established I want the user to be able to start a new activity that lists in ListView all the active connections and have the user pick one. The resulting data will then tie to a new GUI. This really is just a skin choser for the back end. – AedonEtLIRA Nov 23 '10 at 18:11
feedback

5 Answers

up vote 3 down vote accepted

Figuring out what path to take requires answering not only CommonsWare's key question of "why" but also the question of "to what?" are you passing it.

The reality is that the only thing that can go through bundles is plain data - everything else is based on interpretations of what that data means or points to. You can't literally pass an object, but what you can do is one of three things:

1) You can break the object down to its constitute data, and if what's on the other end has knowledge of the same sort of object, it can assemble a clone from the serialized data. That's how most of the common types pass through bundles.

2) You can pass an opaque handle. If you are passing it within the same context (though one might ask why bother) that will be a handle you can invoke or dereference. But if you pass it through Binder to a different context it's literal value will be an arbitrary number (in fact, these arbitrary numbers count sequentially from startup). You can't do anything but keep track of it, until you pass it back to the original context which will cause Binder to transform it back into the original handle, making it useful again.

3) You can pass a magic handle, such as a file descriptor or reference to certain os/platform objects, and if you set the right flags Binder will create a clone pointing to the same resource for the recipient, which can actually be used on the other end. But this only works for a very few types of objects.

Most likely, you are either passing your class just so the other end can keep track of it and give it back to you later, or you are passing it to a context where a clone can be created from serialized constituent data... or else you are trying to do something that just isn't going to work and you need to rethink the whole approach.

link|improve this answer
Thanks for tour reply. Your right, all I need to do is just pass a reference of a list of objects to my new activity. The new activity will take some data from the list and display a selectable ListView. onSelect,the activity will return a result (some data pertaining to the click object) to the host activity. If I understand correctly, I believe your option 2 handles this most appropriately; how do I get this opaque handle? – AedonEtLIRA Nov 23 '10 at 17:55
Your other activity can't extract any data from an opaque object to display. What you probably want to do is create and pass across some surrogate objects of a supported type which contain copies of the information that would be displayed. – Chris Stratton Nov 23 '10 at 18:22
Ok; cool thanks much. – AedonEtLIRA Nov 23 '10 at 18:30
feedback

If you would like to pass objects in an Intent the objects must implement the Parcelable class.

Here is a pretty good example of how to do this: http://blog.cluepusher.dk/2009/10/28/writing-parcelable-classes-for-android/

link|improve this answer
feedback

You could use the global application state.

http://developer.android.com/reference/android/app/Application.html

Update:

Customize and then add this to your AndroidManifest.xml :

<application android:label="@string/app_name" android:debuggable="true" android:name=".CustomApplication"

And then have a class in your project like this :

package com.example;

import android.app.Application;

public class CustomApplication extends Application {
    public int someVariable = -1;
}

And because "It can be accessed via getApplication() from any Activity or Service", you use it like this:

CustomApplication application = (CustomApplication)getApplication();
application.someVariable = 123; 

Hope that helps.

link|improve this answer
Thanks for the reply, but how? – AedonEtLIRA Nov 22 '10 at 20:54
I believe you just subclass Application and can then store anything you like. The xml changes you need are mentioned in the above link. – Mark Storer Nov 22 '10 at 21:58
1  
As a general design principal, it's a good idea to avoid globals unless you really need them. In this case there are good alternatives. – dhaag23 Nov 22 '10 at 22:31
Mark Storer is correct. – Neil D Nov 23 '10 at 14:50
1  
@dhaag23 how about proposing some to the young padawan... – Neil D Nov 23 '10 at 14:50
show 2 more comments
feedback

You can also make your objects Serializable and use the Bundle's getSerializable and putSerializable methods.

link|improve this answer
I tried that and quickly realized it would be impractical. I don't think most of the objects stored in passed class (threads) are serializable. :) thanks though. – AedonEtLIRA Nov 23 '10 at 18:00
feedback

Instead of using the global application state you can just use a singleton object, declaring a public static object at the origin activity:

==> public class MyActivity extends Activity {

public static MyObjectType remoteObj; 

.....

and get it at the destination's "onCreate":

if (MyActivity.remoteObj != null) { 
   MyObjectType localObj = MyActivity.remoteObj;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.