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.

I am creating an application which requires login. I created the main and the login activity.

In the main activity onCreate method I added the following condition:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    ...

    loadSettings();
    if(strSessionString == null)
    {
        login();
    }
    ...
}

The onActivityResult method which is executed when the login form terminates looks like this:

@Override
public void onActivityResult(int requestCode,
    						 int resultCode,
    						 Intent data)
{
    super.onActivityResult(requestCode, resultCode, data);
    switch(requestCode)
    {
    	case(SHOW_SUBACTICITY_LOGIN):
    	{
    		if(resultCode == Activity.RESULT_OK)
    		{

    			strSessionString = data.getStringExtra(Login.SESSIONSTRING);
    			connectionAvailable = true;
    			strUsername = data.getStringExtra(Login.USERNAME);
    		}
    	}
    }

The problem is the login form sometimes appears twice (the login() method is called twice) and also when the phone keyboard slides the login form appears again and I guess the problem is the variable strSessionString.

Does anyone know how to set the variable global in order to avoid login form appearing after the user already successfully authenticates?

Thanks!

share|improve this question

10 Answers

up vote 507 down vote accepted

The more general problem you are encountering is how to save state across several Activities and all parts of your application. A static variable (for instance, a singleton) is a common Java way of achieving this. I have found however, that a more elegant way in Android is to associate your state with the Application context.

As you know, each Activity is also a Context, which is information about its execution environment in the broadest sense. Your application also has a context, and Android guarantees that it will exist as a single instance across your application.

The way to do this is to create your own subclass of android.app.Application, and then specify that class in the application tag in your manifest. Now Android will automatically create an instance of that class and make it available for your entire application. You can access it from any context using the Context.getApplicationContext() method (Activity also provides a method getApplication() which has the exact same effect):

class MyApp extends Application {

  private String myState;

  public String getState(){
    return myState;
  }
  public void setState(String s){
    myState = s;
  }
}

class Blah extends Activity {

  @Override
  public void onCreate(Bundle b){
    ...
    MyApp appState = ((MyApp)getApplicationContext());
    String state = appState.getState();
    ...
  }
}

This has essentially the same effect as using a static variable or singleton, but integrates quite well into the existing Android framework. Note that this will not work across processes (should your app be one of the rare ones that has multiple processes).

EDIT: As Arhimed notes below, this method offers no way easy way of persisting the global state. If your application finds this necessary you should be using some sort of store; see the Android docs for a variety of methods.

Also as anticafe commented, in order to correctly tie your Application override to your application a tag is necessary. Again, see the Android docs for more info.

share|improve this answer
19  
Thank you Soonil -- these kinds of answers are the reason why I love Stack Overflow so much. GREAT JOB! – JohnnyLambada Sep 25 '09 at 16:57
5  
For anyone wondering how to "specify that class in the application tag in your manifest", there are, as of this writing, two other answers for this question that describe how to do it (use android:name), one by ebuprofen and one by Mike Brown. – Tyler Collier Nov 11 '10 at 17:09
1  
@Soonil: I just added an answer, which actually should have been a comment to your answer. However it was too long to place it as a comment here. – Arhimed Jan 9 '11 at 21:52
8  
Soonil, your answer is right, but could you notice that we should add <application android:name=".MyApp" ... /> into Android Manifest file? – anticafe Feb 19 '11 at 23:40
1  
This is a fabulous response. In all of my apps so far I've created a class called GlobalConfig and just stored a wack load of static variables. This is much more elegant and if I'm not mistaken, this method will null out all of those variables when the app is closed? I have had issues in the past with memory leaks due to those static variables persisting between app run > home > app open again > home > app open again > etc. I had to deal with some annoying unloading. – Rev Tyler May 25 '12 at 1:37
show 14 more comments

Create this subclass

public class MyApp extends Application {
  String foo;
}

In the AndroidManifest.xml add android:name

Example

<application android:name=".MyApp" 
       android:icon="@drawable/icon" 
       android:label="@string/app_name">
share|improve this answer
thanks for that. I was wondering how to declare it in the manifest – Someone Somewhere May 4 '11 at 23:38
3  
For it to work for me I had to remove the "." within ".MyApp" – Someone Somewhere May 5 '11 at 0:07
2  
just declare it after the main activity, otherwise it may not install/deploy – sami Aug 29 '11 at 10:36
3  
just wanna say, this goes in the MAIN application tag that is already there... this isnt a second one :) had to learn the hard way. – bwoogie Oct 14 '11 at 1:04

The suggested by Soonil way of keeping a state for the application is good, however it has one weak point - there are cases when OS kills the entire application process. Here is the documentation on this - Processes and lifecycles.

Consider a case - your app goes into the background because somebody is calling you (Phone app is in the foreground now). In this case && under some other conditions (check the above link for what they could be) the OS may kill your application process, including the Application subclass instance. As a result the state is lost. When you later return to the application, then the OS will restore its activity stack and Application subclass instance, however the myState field will be null.

AFAIK, the only way to guarantee state safety is to use any sort of persisting the state, e.g. using a private for the application file or SharedPrefernces (it eventually uses a private for the application file in the internal filesystem).

share|improve this answer
6  
+1 for persisting with SharedPreferences; this is how I've seen it done. I do find it strange to abuse the preference system for saved state, but it works so well that the issue becomes just a question of terminology. – Cheezmeister Feb 22 '11 at 17:07
@Cheezmeister: +1. I have used SharedPreferences for saving & accessing state too. It is global & it persists. The only downside might be the extra split-second it takes to read/write. – OceanBlue Apr 15 '11 at 15:23
1  
could you please post the code (or provide a link to an explanation) as to how SharedPreferences is used to solve the problem that Arhimed describes – Someone Somewhere May 4 '11 at 23:47
1  
Preferences, database, file serialization, etc. Each activity can maintain state if they use the onSaveInstanceState but it won't help if the user backs out of the activity and which removes it from the history stack, force closes, or turns off their device. – Darren Hinderer Jun 23 '11 at 16:10
1  
This behaviour is very annoying - it wouldn't be so bad if the onTerminate() method of your application was called so you could deal with the situation elegantly. – Dean Wild Jun 28 '12 at 14:30
show 2 more comments

Just a note ..

add:

android:name=".Globals"

or whatever you named your subclass to the existing <application> tag. I kept trying to add another <application> tag to the manifest and would get an exception.

share|improve this answer
Hi, Gimbl. I had the same problem. I also had my own <application> tag and, when I try to add another <application> tag I had the same problem as you (exception message). But I did what you mentioned, and it didn't work. I add android:name=".GlobalClass" to my <application> tag but it doesn't work. Can you fully explain how you solved it?? – Sonhja Sep 23 '11 at 10:35
1  
Good <manifest> <application android:name=".GlobalData"> </application></manifest>. Bad <manifest><application></application> <application android:name=".GlobalData"> </application> </manifest> – Gimbl Sep 26 '11 at 15:16

I couldn't find how to specify the application tag either, but after a lot of Googling, it became obvious from the manifest file docs: use android:name, in addition to the default icon and label in the application stanza.

android:name The fully qualified name of an Application subclass implemented for the application. When the application process is started, this class is instantiated before any of the application's components.

The subclass is optional; most applications won't need one. In the absence of a subclass, Android uses an instance of the base Application class.

share|improve this answer

What about ensuring the collection of native memory with such global structures?

Activities have an onPause/onDestroy() method that's called upon destruction, but the Application class has no equivalents. What mechanism are recommended to ensure that global structures (especially those containing references to native memory) are garbage collected appropriately when the application is either killed or the task stack is put in the background?

share|improve this answer
Indeed they should have this.. it's giving me a really great headache... – NeTeInStEiN May 19 '11 at 18:46

Just you need to define application name like below which will work

<application

  android:name="ApplicationName" android:icon="@drawable/icon">


</Application>
share|improve this answer

if some variables are stored in sqlite and you must use them in most activities in your app. then Application maybe the best way to achieve it. query the variables from database when application started and store them in a field. then you can use these variables in your activities.

so find the right way,and there is no best way

share|improve this answer

Like there was discussed above OS could kill the APPLICATION without any notification (there is no onDestroy event) so there is no way to save these global variables.

SharedPreferences could be a solution EXCEPT you have COMPLEX STRUCTURED variables (in my case I had integer array to store the IDs that the user has already handled). The problem with the SharedPreferences is that it is hard to store and retrieve these structures each time the values needed.

In my case I had a background SERVICE so I could move this variables to there and because the service has onDestroy event, I could save those values easily.

share|improve this answer
1  
Any code or implementation example please? – M.ES Dec 10 '12 at 14:59

You can have a static field to store this kind of state. Or put it to the resource Bundle and restore from there on onCreate(Bundle savedInstanceState). Just make sure you entirely understand Android app managed lifecycle (e.g. why login() gets called on keyboard orientation change).

share|improve this answer

protected by Community Jun 13 '11 at 9:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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