3

如何SharedPreferences在没有的类中使用oncreate

访问它时得到空指针。

  public class Ftr extends Activity 

   { 
    SharedPreferences preferences;

    Context ab=this;

  public void ft()
     {
       preferences = PreferenceManager.getDefaultSharedPreferences(ab);
      String result = preferences.getString("F","");
        }
      }

ft()从另一个活动Ftr中调用 Function 只是一个类而不是一个活动。

在这种情况下我该如何使用SharedPreferences

4

1 回答 1

5

您可以采用 Common 方法或 Utils 所以在 All Method 中使用。

  public static void SaveInPreference(Context mContext, String key, String objString) {
    SharedPreferences.Editor editor = mContext.getSharedPreferences(mContext.getString(R.string.app_name),
            Context.MODE_PRIVATE).edit();
    editor.putString(key, objString);
    editor.commit();
}

public static String getPrefString(Context mContext, final String key, final String defaultStr) {
    SharedPreferences pref = mContext.getSharedPreferences(mContext.getString(R.string.app_name),
            Context.MODE_PRIVATE);
    return pref.getString(key, defaultStr);
}
于 2013-10-21T11:05:23.447 回答