4

私のアプリケーションでは、共有設定を使用していますが、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()を呼び出すと、null値のみが表示されます。しかし、onResumeは正常に動作しています。

4

3 に答える 3

1

あなたのアクティビティはアプリケーションの最初のアクティビティのようです。onCreate メソッドで SharedPreferences が正しく初期化されていない可能性があります。

onCreate または onResume メソッドの代わりに、onStart メソッドで Preferences を使用するのが最善です。

于 2012-04-06T04:09:53.000 に答える
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, "");

}
于 2012-04-06T05:58:19.980 に答える