私は店で私の共有設定で位置を保存したいし、それを編集して、アプリケーションの開始が、おかげで、私はこれを持っているときにそれを開くことができます。Androidの位置を保存するための共有設定の使い方
//load shared preferecnes
SharedPreferences sharedpreferences = getSharedPreferences("MyPrefs",
Context.MODE_PRIVATE);
//note: here idk how to read the last value of position saved
//Log.v("lastposition", sharedPreferences);
// on edit preferences and save
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString("position", New LatLang(30,40));
editor.commit();
みんなありがとうは
を:)
LAST EDITのCHANGES:
//load shared preferecnes
SharedPreferences sharedpreferences = getSharedPreferences(this,Context.MODE_PRIVATE);
// --> HERE IDK HOT LOAD LAST POSITIONS SAVED
// on edit preferences and save
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putDouble("position_lat", 30d);
editor.putDouble("position_lon", 40d);
editor.commit();
正確には何か問題があるようですか?環境設定を保存する、または読み込む? –
好みに何も保存することはできません。あなたは 'LatLong'オブジェクトを文字列、intなどに分割する必要があります –
今はダブルで保存することができますが、今は問題があります。 –