Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a scenario where after logging in through a login page, there will be sign out button on each activity.

On clicking signout, I will be passing the session id of the signed in user to signout. Can anyone guide me on how to keep session id available to all activities??

Alternatively, are there any other solutions to this problem?

share|improve this question
2  
i used sharedpreference its useful also to keep login data on remeber password feature – shareef Dec 2 '12 at 19:33

11 Answers

up vote 111 down vote accepted

The easiest way to do this would be to pass the session id to the signout activity in the intent you're using to start the activity:

Intent intent = new Intent(getBaseContext(), SignoutActivity.class);
intent.putExtra("EXTRA_SESSION_ID", sessionId);
startActivity(intent)

The docs for Intents has more information (look at the section titled "Extras").

share|improve this answer
ok if i pass session id to signout acitivity on successful login and will it work on any activity page to signout or manually i will have to assign it value on each activity??? using above procedure?? – UMAR Jan 19 '10 at 6:57
2  
Yes, you'd have to make the session ID available to every activity where you want to allow the user to signout. Alternatively, you could store it in the Application object, but then you'd have to manage the state of the session (check if it's valid before using, etc). – Erich Douglass Jan 19 '10 at 15:16
like the simple approach – Syd Nov 17 '10 at 22:37
3  
That is only half an answer! Now how to read the extra info in the new Activity? – Leander Apr 16 at 7:50
Leander - see user914425's answer below for more complete response. stackoverflow.com/a/7325248/800505 – Warren Sergent - spakatak.com May 10 at 21:42

In your current Activity, create a new Intent:

Intent i = new Intent(getApplicationContext(), NewActivity.class);
i.putExtra("new_variable_name","value");
startActivity(i);

Then in the new Activity, retrieve those values:

Bundle extras = getIntent().getExtras();
if (extras != null) {
    String value = extras.getString("new_variable_name");
}

Use this technique to pass variables from one Activity to the other.

share|improve this answer
1  
Thank you for the completeness of this answer. – dbDev Mar 25 '12 at 5:43
1  
This is a perfect solution. Concise yet complete. – M Jesse Jul 27 '12 at 5:05
Great answer! This should be marked as the correct answer! Thank you. – Enke Mar 11 at 12:09
the following link may help: [link]taaniapps.blogspot.in/2013/02/… – Suraj G Mar 14 at 18:43

Passing Intent extras is a good approach as Erich noted.

The Application object is another way though, and it is sometimes easier when dealing with the same state across multiple activities (as opposed to having to get/put it everywhere), or objects more complex than primitives and Strings.

You can extend Application, and then set/get whatever you want there and access it from any Activity (in the same application) with getApplication().

Also keep in mind that other approaches you might see, like statics, can be problematic because they can lead to memory leaks. Application helps solve this too.

share|improve this answer
4  
+1 for the statics problem. probably the clean up can be resolved by combining a singleton with onCreate/onTerminate method Application class. – Syd Nov 17 '10 at 22:33
can u explain a little more or point me to using this. – Harsha M V Dec 26 '10 at 14:01
2  
Here is one example of using the Application object, this explains it a bit more (skip the AsyncTask stuff and just look at the Application section): screaming-penguin.com/node/7746 . And note that the docs advocate the BEST path is to use a static singleton for non-persistent and non-primitive data you need to pass between components. You can use static singletons OR the Application object, but the best path may be to use BOTH. Use the App object to control your static singleton (since App object has well-defined lifecycle). – Charlie Collins Feb 10 '11 at 15:31
Hey, I know this thread was quite a while back, but the link provided is now a dead end. Is there anywhere I can find the example? – JuiCe Jun 15 '12 at 14:38

You may want to consider the SharedPreference objects. It has a simple API and is accessible across an application's activities. Here is an example.

share|improve this answer
1  
I like your answer best... Passing it via the intent means that almost everywhere I start an activity you will have to remember to include the sessionId. By putting it in the SharedPreferences you can get it anytime from any activity. :0) – bytebender Feb 28 '12 at 1:06

Try to do the following:

Create simple "helper" class(factory for your Intents), like this:

import android.content.Intent;
public class IntentManager {
public static final Intent createYourSpecialIntent(Intent src) {
  return new Intent("YourSpecialIntent").addCategory("YourSpecialCategory").putExtras(src);
}
}

This will be the factory for all your Intents. Everytime you need a new Intent, create static factory method in IntentManager. To create new Intent you should just say like that:

IntentHelper.createYourSpecialIntent(getIntent());

in your activity. when when you want to "save" some data in "session" just use following:

IntentHelper.createYourSpecialIntent(getIntent()).putExtra("YOUR_FIELD_NAME",fieldValueToSave);

and send this Intent. In target Activity your field will be available as:

getIntent().getStringExtra("YOUR_FIELD_NAME");

So now we can use Intent like same old session(like in servlets or jsp.). Hope this helps.

share|improve this answer

This is what google suggests http://developer.android.com/resources/faq/framework.html#3

I would go for singleton. But you can go for whatever you like.

share|improve this answer

The most convenient way to pass data between activities is by passing intents. In the first activity from where you want to send data, you shoukd add code,

String str = "My Data"; //Data you want to send
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);         
intent.putExtra("name",str); //here you will add the data into intent to pass bw activites
v.getContext().startActivity(intent);

you should also import

import android.content.Intent;

Then in the next Acitvity(SecondActivity), you dhould get retrieve the data from intent using the following code,

String name = this.getIntent().getStringExtra("name");
share|improve this answer

Another way is to use a public static field in which you store data, i.e.:

public class MyActivity extends Activity {

  public static String SharedString;
  public static SomeObject SharedObject;

//...
share|improve this answer
2  
I really wonder why your suggestion did't get votes, it's simpler and more practical. – Porizm Nov 15 '12 at 18:58
@FirasMoussa thank you, I just added this recently, the original question was asked 2 years ago, maybe there were some limitations back then, I've added mine because it seems much more simpler and could help others that are just starting on android. – ComputerSaysNo Nov 15 '12 at 23:14

The passing of data between activities is mainly by means of an intent object.

First you have to attach the data to the intent object with the use of the Bundle class. Then call the activity using either startActivity() or startActivityForResult() methods.

You can find more information about it, with an example from this blogpost.

share|improve this answer

I recently released Vapor API, a jQuery flavored Android framework that makes all sorts of tasks like this simpler. As mentioned, SharedPreferences is one way you could do this.

VaporSharedPreferences is implemented as Singleton so that is one option, and in Vapor API it has a heavily overloaded .put(...) method so you don't have to explicitly worry about the datatype you are committing - providing it is supported. It is also fluent, so you can chain calls:

$.prefs(...).put("val1", 123).put("val2", "Hello World!").put("something", 3.34);

It also optionally autosaves changes, and unifies the reading and writing process under-the-hood so you don't need to explicitly retrieve an Editor like you do in standard Android.

Alternatively you could use an Intent. In Vapor API you can also use the chainable overloaded .put(...) method on a VaporIntent:

$.Intent().put("data", "myData").put("more", 568)...

And pass it as an extra, as mentioned in the other answers. You can retrieve extras from your Activity, and furthermore if you are using VaporActivity this is done for you automatically so you can use:

this.extras()

To retrieve them at the other end in the Activity you switch to.

Hope that is of interest to some :)

share|improve this answer

You just have to send extras while calling your intent

like this:

Intent intent = new Intent(getApplicationContext(), SecondActivity.class); intent.putExtra("Variable Name","Value you want to pass"); startActivity(intent);

Now on the OnCreate method of your SecondActivity you can fetch the extras like this

If the value u sent was in "long"

long value = getIntent().getLongExtra("Variable Name which you sent as an extra", defaultValue(you can give it anything));

If the value u sent was a "String"

String value = getIntent().getStringExtra("Variable Name which you sent as an extra");

If the value u sent was a "Boolean"

Boolean value = getIntent().getStringExtra("Variable Name which you sent as an extra",defaultValue);

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.