Fragment内のSharedPreferencesを読み込もうとしています。私のコードは、私が他のアクティビティで環境設定を取得するために使用するコードです。フラグメント内のAndroid SharedPreferences
SharedPreferences preferences = getSharedPreferences("pref", 0);
私はエラー
Cannot make a static reference to the non-static method getSharedPreferences(String, int) from the type ContextWrapper
を取得し、私はこれらのリンクをたどることを試みたが、運Accessing SharedPreferences through static methodsと Static SharedPreferencesとしています。解決していただきありがとうございます。
getSharedPreferences( "県"、0);ゼロ(0)はどのような私的/公的な意味ですか? – Kailas
@Kailasが正しい、モード、すなわちWORLD_READABLEのect。 http://developer.android.com/reference/android/content/Context.html#getSharedPreferences(java.lang.String、int) – Jug6ernaut
どのようなモードで共有プリファレンスを使用しましたか?そのアプリケーションによるアクセスのみ他のアプリケーションなし共有設定値を読み書きしますか? – Kailas