Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hey people, I have one activity which is the main activity used throughout the app and it has a number of variables. I have 2 other activities which I would like to be able to use the data from the first activity. Now I know I can do something like this:

GlobalState gs = (GlobalState) getApplication();
String s = gs.getTestMe();

However I want to share alot of variables and some might be rather large so I don't want to be creating copies of them like above. Therefore is there a way to directly get and change the variables without using get and set methods as I remember reading an article on the google dev site saying this is not recommended for performance on android.

So if anyone has any ideas or knows a better way I would appreciate it. Thanks.

share|improve this question

9 Answers

The normal way is to pass the variables inside the intent:

Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
intent.putExtra("some_key", value);
intent.putExtra("some_other_key", "a value");
startActivity(intent);

On the second activity:

Bundle bundle = getIntent().getExtras();
int value = bundle.getInt("some_key");
String value2 = bundle.getString("some_other_key");

You can pass more complex objects by making them implement the Serializable interface.

share|improve this answer
10  
I would argue that that is not the "normal" way for larger/more complex data. It's far easier to use a static singleton or the Application object, and it works great. Now that said the OP did use a String in the example, for that, Intent is perfect and preferred. – Charlie Collins Feb 2 '11 at 18:40
5  
Serializable has found to have serious performance issues on the Android process model. Thats why they introduced Parcelable. Read Parcelable instead of Serializable in the above answer. – Subin Sebastian Aug 14 '12 at 2:44
This is passing data from the main activity to a secondary activity, what about vice versa? – Dennis Dec 5 '12 at 15:03
1  
That's done via the setResult method. Also, in that case, the secondary activity must be invoked using startActivityForResult method. – Cristian Dec 6 '12 at 17:24

What you can use:

  1. passing data between activities (like Cristian said)
  2. using a class with a lot of static variables (so you can call them without an instance of the class and without using getter/setter)
  3. Using a database
  4. Shared Preferences

What you choose depends on your needs. Probably you will use more than one way when you have "a lot of"

share|improve this answer

"However I want to share alot of variables and some might be rather large so I don't want to be creating copies of them like above."

That doesn't make a copy (especially with String, but even objects are pass by value of the reference, not the object itself, and getter's like that are fine to use -- arguably better to use than other means because they are common and well understood). The older "performance myths," such as not using getters and setters, still have some value, but have also been updated in the docs.

But if you don't want to do that, you could also just make the variables public or protected in GlobalState and access them directly. And, you can make a static singleton as the Application object JavaDoc indicates:

There is normally no need to subclass Application. In most situation, static singletons can provide the same functionality in a more modular way. If your singleton needs a global context (for example to register broadcast receivers), the function to retrieve it can be given a Context which internally uses Context.getApplicationContext() when first constructing the singleton.

Using Intent data, as other answers here note is another way to pass data, but it's usually used for smaller data and simple types. You can pass larger/more complex data, but it's more involved than just using a static singleon. The Application object is still my personal favorite for sharing larger/more complex non persistent data between Android application components though (because it has a well defined lifecycle in an Android app).

Also, as others have noted, if the data gets very complex and needs to be persistent then you can use SQLite or the filesystem too.

share|improve this answer
1  
Actually, I just stumbled on this in the docs recently: developer.android.com/guide/appendix/faq/framework.html#3. For "non-persistent complex objects" it recommends using the Application class to create and tear down a static singleton! That way you get the well-defined lifecycle Application provides, and the ease of use of a static singleton. – Charlie Collins Feb 6 '11 at 15:21
1  
that section of the faq seems to be removed now (I only see "non-persistent objects" and no mention of Application class). Anyway you can elaborate? – Turbo May 10 '12 at 1:27

Do what google commands you to do! here: http://developer.android.com/resources/faq/framework.html#3

Primitive Data Types Non-Persistent Objects Singleton class - my favorite :D A public static field/method A HashMap of WeakReferences to Objects Persistent Objects ( Application Preferences, Files,contentProviders,SQLite DB)

share|improve this answer

You could extend the Application class and tag on any objects you want there, they are then available anywhere in your application

share|improve this answer

Well I have a few ideas, but I don't know if they are what your looking for.

You could use a service that holds all of the data and then just bind your activities to the service for data retrival.

Or package your data into a serializable or parcelable and attach them to a bundle and pass the bundle between activities.

This one may not be at all what your looking for, but you could also try using a SharedPreferences or a preference in general.

Either way let me know what you decide.

share|improve this answer

Assuming you are calling activity two from activity one using an Intent.
You can pass the data with the intent.putExtra(),

Take this for your reference. Sending information with Intent.putExtra

Hope that's what you want.

share|improve this answer

If your intention is to call other Activities from the current Activity, you should use Intents. Your focus could be less on persisting data than on sharing it on an as-needed basis.

However, if you really need to persist these values then you could persist them in some kind of structured text file or database on local storage. A properties file, XML file, or JSON file could store your data and be easily parsed during activity creation. Don't forget also that you have SQLite on all Android devices, so you could store them in a database table. You could also use a Map to store key-value pairs and serialize the map to local storage, but this might be too cumbersome to be useful for simple data structures.

share|improve this answer

I think that using bundles is the normal way to do this, but it makes one activity dependent to another one because of the name you have to include on the Bundle as reference. To solve this I have found a good way to do this:

public class MyActivity extends Activity {
    public static Intent newInstance(Context context, int data1, boolean data2, CusomSerializableObject data3){
        Intent intent = new Intent(context, MyActivity.class);
        Bundle bundle = new Bundle();
        bundle.putInt("data1", data1);
        //And so on
        intent.putExtras(bundle);
        return intent;
    }

    //OnCreate that retrieves the info and other methods
}

public class CallerActivity extends Activity {
    public void someMethod(){
        startActivity(MyActivity.newInstance(this, data1, data2, data3));
    }
}

As you can see, now the caller activity is not dependant on the name you use to store de data, forcing you to call it with te correct data it needs. Of course you can call it on the "bad and traditional" way but you will make your activity (or fragment) less dependant on the bundle and you will solve some common errors.

UPDATE: If you want to parse complete custom objects that are not basic data types in java you can implement the Parcelable interface or serialize them.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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