Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a global variable in android? [duplicate]

In my android application I need a place for putting the variable member id . The problem is , it is getting from the online API and I need to find a way to store / retrieve it

I have tried to put it in a custom class , but the problem is , it will lose if I kill the activity, I have also know that there is a way to extends the application.

So I would like to know what is the best way to store global variable?

I have to implment:

  1. Save the variable on onSaveState
  2. Save it on sharepref
  3. Save it manually
  4. Retrieve it manually

Thanks

Update: Thanks for reply. If I have just 3 variable (simple data e.g. a boolean , a phrase ), and I need it after app restart , should I simply use share pref to store it? What is the drawback of it? e.g. Will it harmful to the performance? thanks

like image 948
user782104 Avatar asked Feb 16 '14 10:02

user782104


4 Answers

You can create the global variable in android by declaring them in the class which extend the Application class.

Something like this.

class MyAppApplication extends Application {

    private String mGlobalVarValue;

    public String getGlobalVarValue() {
        return mGlobalVarValue;
    }

    public void setGlobalVarValue(String str) {
        mGlobalVarValue = str;
    }
}

MainActivity.java

class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle b){
        ...
        MyAppApplication mApp = ((MyAppApplication)getApplicationContext());
        String globalVarValue = mApp.getGlobalVarValue();
        ...
    }
}

Update

This hold the value until your application is not destroyed. If you want to keep your values save even after your application instance destroy then you can use the SharedPreferences best way to do this.

Learn about the SharedPrefernces from here : http://developer.android.com/reference/android/content/SharedPreferences.html

like image 174
Ajay S Avatar answered Nov 17 '22 19:11

Ajay S


  • If you need a global variable, which is shared between multiple activities and survives their lifecycle changes, but is otherwise not persisted and would not survive an application restart, the method suggested in the first answer (extending Application and putting it there) is ok.
  • If you need a persisted global setting, which should also survive an application restart, then you should use one of the other methods suggested. SharedPreferences is probably the easiest to use.

See also this Stack Overflow question: What's the best way to share data between activities?

like image 31
stoyanr Avatar answered Nov 17 '22 18:11

stoyanr


You can store it in a SharedPreferences, and create a sharedpreferenceHelper class to retrieve/store it.

like image 2
StarsSky Avatar answered Nov 17 '22 20:11

StarsSky


Its always better to store values which you want to use multiple times in one of the following ways:-

  • Shared Preferences
  • Singleton classes
  • Write it to a file
  • SQLite Database
  • Store on the web-server
like image 1
Atish Agrawal Avatar answered Nov 17 '22 20:11

Atish Agrawal