共享首选项存储值不能在android onCreate()中使用

时间:2012-04-06 03:51:38

标签: android sharedpreferences

在我的应用程序中,我使用共享首选项,它在onResume()中工作得很好,只是它在onCreate()中不起作用。谁知道原因?在onCreate中,共享首选项值始终为null。

这里是我的代码

@Override
protected void onResume() {

    setTextValues();
    super.onResume();
    }

private void setTextValues(){       
      txt1.setText(PreferenceConnector.readString(this,PreferenceConnector.MILEAGE, null));
      txt2.setText(PreferenceConnector.readString(this,PreferenceConnector.YEAR, null));
      txt3.setText(PreferenceConnector.readString(this,PreferenceConnector.CAPACITY, null));         
}

   package com.InternetGMBH.Sample.Utilities;

     import com.InternetGMBH.Tample.Activities.WheelActivity;

     import android.content.Context;
      import android.content.SharedPreferences;
     import android.content.SharedPreferences.Editor;

  public class PreferenceConnector{
  public static final String PREF_NAME = "PEOPLE_PREFERENCES";
  public static final int MODE = Context.MODE_PRIVATE;


public static final String MILEAGE= "MILEAGE";
public static final String YEAR= "YEAR";
public static final String CAPACITY= "CAPACITY";



public static void writeBoolean(Context context, String key, boolean value) {
    getEditor(context).putBoolean(key, value).commit();
}

public static boolean readBoolean(Context context, String key, boolean defValue) {
    return getPreferences(context).getBoolean(key, defValue);
}

public static void writeInteger(Context context, String key, int value) {
    getEditor(context).putInt(key, value).commit();

}

public static int readInteger(Context context, String key, int defValue) {
    return getPreferences(context).getInt(key, defValue);
}

public static void writeString(Context context, String key, String value) {
    getEditor(context).putString(key, value).commit();

}

public static String readString(Context context, String key, String defValue) {
    return getPreferences(context).getString(key, defValue);
}

public static void writeFloat(Context context, String key, float value) {
    getEditor(context).putFloat(key, value).commit();
}

public static float readFloat(Context context, String key, float defValue) {
    return getPreferences(context).getFloat(key, defValue);
}

public static void writeLong(Context context, String key, long value) {
    getEditor(context).putLong(key, value).commit();
}

public static long readLong(Context context, String key, long defValue) {
    return getPreferences(context).getLong(key, defValue);
}

public static SharedPreferences getPreferences(Context context) {
    return context.getSharedPreferences(PREF_NAME, MODE);
}



public static Editor getEditor(Context context) {
    return getPreferences(context).edit();
}

}

如果我在onCreate()中调用setTextValues(),它只显示空值。但是onResume它的工作正常。

3 个答案:

答案 0 :(得分:1)

您的活动似乎是应用程序的第一个活动,在onCreate方法中,SharedPreferences可能无法正确初始化。

最好在onStart方法中使用Preferences,而不是onCreate或onResume方法。

答案 1 :(得分:0)

SharedPreferences与首选项不同。您应该像下面的示例代码一样调用getSharedPreferences:

public static String APP_PREFERENCES = "appPreferences";
public static String PREFERENCE_SAMPLE = "prefSample";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //get Shared preferences
    sharedPreferences = getSharedPreferences(APP_PREFERENCES, MODE_PRIVATE);

    //retrieve a preference
    String str = sharedPreferences.getString(PREFERENCE_SAMPLE, "");

}

答案 2 :(得分:0)

将此用作共享偏好类

public class PreferenceConnector{
public static final String PREF_NAME = "PEOPLE_PREFERENCES";
public static final int MODE = Context.MODE_PRIVATE;

/*public static final String NAME = "NAME";
public static final String SURNAME = "SURNAME";
public static final String AGE = "AGE";*/

public static void writeBoolean(Context context, String key, boolean value) {
    getEditor(context).putBoolean(key, value).commit();
}

public static boolean readBoolean(Context context, String key, boolean defValue) {
    return getPreferences(context).getBoolean(key, defValue);
}

public static void writeInteger(Context context, String key, int value) {
    getEditor(context).putInt(key, value).commit();

}

public static int readInteger(Context context, String key, int defValue) {
    return getPreferences(context).getInt(key, defValue);
}

public static void writeString(Context context, String key, String value) {
    getEditor(context).putString(key, value).commit();

}

public static String readString(Context context, String key, String defValue) {
    return getPreferences(context).getString(key, defValue);
}

public static void writeFloat(Context context, String key, float value) {
    getEditor(context).putFloat(key, value).commit();
}

public static float readFloat(Context context, String key, float defValue) {
    return getPreferences(context).getFloat(key, defValue);
}

public static void writeLong(Context context, String key, long value) {
    getEditor(context).putLong(key, value).commit();
}

public static long readLong(Context context, String key, long defValue) {
    return getPreferences(context).getLong(key, defValue);
}

public static SharedPreferences getPreferences(Context context) {
    return context.getSharedPreferences(PREF_NAME, MODE);
}

public static Editor getEditor(Context context) {
    return getPreferences(context).edit();
}

}