I made a library that I access and use across my app.

My code looks something like this:
----------------
package com.android.foobar;

import android.content.SharedPreferences;
import android.preference.PreferenceManager;

public class Library{
        int someVar;

        public Library() {
                SharedPreferences settings =
PreferenceManager.getDefaultSharedPreferences(this);
                someVar = settings.getInt("someVar", 435);
        }

        public int otherMethodes(){
                return someVar; //not important
        }
}
------------------

Now, I want to use the shared preferences to get some settings and use
them for doing calculations in my lib, and I've been trying but can't
get a valid context to use in getDefaultSharedPreferences(). Any ideas?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to