Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass (Android) application context to a Java class?

I have the following code in which I am using the application context to retrieve needed information:

public class Data{
   private boolean VarA;

   public void setVarA(boolean B,Context ctx)
   {
        SharedPreferences CoreDataStorage = ctx.getSharedPreferences(PREFS_NAME, 0);
    SharedPreferences.Editor editor = CoreDataStorage.edit();
        editor.putBoolean("PrefVarA", VarA);
        edit.commit();
   }

}

Now I am calling the public method setVarA() from the below class

public class MyActivity extends Activity{

    Data cd = new Data();

    @Override
        public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.registration);
        cd.setVarA(true,this);
    }
}

In the activity above it shows me compilation error that it can't cast from MyActivity to Context. Please suggest any solution. Is the above code is not proper way to pass the context?

like image 839
Surjya Narayana Padhi Avatar asked Feb 11 '12 13:02

Surjya Narayana Padhi


1 Answers

You need the application Context to access the shared preferences. It should be:

cd.setVarA(true,this.getApplicationContext());

in the onCreate of MyActivity.

like image 194
Jivings Avatar answered Sep 28 '22 00:09

Jivings