ค่ากำหนดที่แชร์ของ Android สำหรับการสร้างกิจกรรมครั้งเดียว (ตัวอย่าง) [ปิด]


294

ฉันมีสามกิจกรรม A, B และ C ที่ A และ B เป็นรูปแบบและหลังจากกรอกและบันทึกข้อมูลแบบฟอร์มในฐานข้อมูล (SQLITE) ฉันกำลังใช้ความตั้งใจจาก A ถึง B แล้ว B ถึง C สิ่งที่ฉันต้องการคือทุกครั้งที่ฉันเปิดแอปของฉันฉันต้องการ C เป็นหน้าจอหลักของฉันไม่ใช่ A และ B อีกต่อไป

ฉันเดาว่าค่ากำหนดที่ใช้ร่วมกันจะใช้งานได้ แต่ฉันไม่สามารถหาตัวอย่างที่ดีเพื่อให้เป็นจุดเริ่มต้นให้ฉันได้ ความช่วยเหลือใด ๆ ที่จะได้รับการชื่นชม



1
คุณได้ดูบทแนะนำอย่างเป็นทางการที่developer.android.com/guide/topics/data/data-storage.html#prefหรือไม่
AxiomaticNexus

12
ฉันโหวตให้เปิดคำถามนี้อีกครั้งเพราะไม่ได้ขอคำแนะนำจริงๆ
Suragch

คำตอบ:


619

การตั้งค่าในการตั้งค่า:

// MY_PREFS_NAME - a static String variable like: 
//public static final String MY_PREFS_NAME = "MyPrefsFile";
SharedPreferences.Editor editor = getSharedPreferences(MY_PREFS_NAME, MODE_PRIVATE).edit();
 editor.putString("name", "Elena");
 editor.putInt("idName", 12);
 editor.apply();

ดึงข้อมูลจากการตั้งค่า:

SharedPreferences prefs = getSharedPreferences(MY_PREFS_NAME, MODE_PRIVATE); 
String name = prefs.getString("name", "No name defined");//"No name defined" is the default value.
int idName = prefs.getInt("idName", 0); //0 is the default value.

ข้อมูลเพิ่มเติม:

ใช้การตั้งค่าที่ใช้ร่วมกัน

การตั้งค่าที่ใช้ร่วมกัน


74
ลองใช้ Apply () แทน กระทำการเขียนข้อมูลไปยังที่จัดเก็บข้อมูลถาวรทันทีในขณะที่ใช้จะจัดการกับมันในพื้นหลัง
CodeNinja

12
apply()เป็นการเรียกแบบอะซิงโครนัสเพื่อทำดิสก์ I / O โดยที่แบบcommit()ซิงโครนัส ดังนั้นหลีกเลี่ยงการโทรcommit()จากเธรด UI
Aniket Thakur

103

สร้าง SharedPreferences

SharedPreferences pref = getApplicationContext().getSharedPreferences("MyPref", MODE_PRIVATE); 
Editor editor = pref.edit();

จัดเก็บข้อมูลเป็นคู่ KEY / VALUE

editor.putBoolean("key_name1", true);           // Saving boolean - true/false
editor.putInt("key_name2", "int value");        // Saving integer
editor.putFloat("key_name3", "float value");    // Saving float
editor.putLong("key_name4", "long value");      // Saving long
editor.putString("key_name5", "string value");  // Saving string

// Save the changes in SharedPreferences
editor.apply(); // commit changes

รับข้อมูล SharedPreferences

// ถ้าไม่มีค่าสำหรับ key แล้วส่งคืนค่าพารามิเตอร์ที่สอง - ในกรณีนี้ null

boolean userFirstLogin= pref.getBoolean("key_name1", true);  // getting boolean
int pageNumber=pref.getInt("key_name2", 0);             // getting Integer
float amount=pref.getFloat("key_name3", null);          // getting Float
long distance=pref.getLong("key_name4", null);          // getting Long
String email=pref.getString("key_name5", null);         // getting String

การลบค่าคีย์จาก SharedPreferences

editor.remove("key_name3"); // will delete key key_name3
editor.remove("key_name4"); // will delete key key_name4

// Save the changes in SharedPreferences
editor.apply(); // commit changes

ล้างข้อมูลทั้งหมดจาก SharedPreferences

 editor.clear();
 editor.apply(); // commit changes

3
pref.getBoolean ("key_name1", null); มันไม่สามารถเป็นโมฆะ มันต้องการค่า defalut หากไม่มีการจัดเก็บอะไรเลย
Boris Karloff

2
คุณควรใช้ Apply () แทนที่จะคอมมิต () ใช้ () เป็นแบบอะซิงโครนัสและคุณจะเรียกใช้บนเธรดพื้นหลัง
Androider

จะล้มเหลวหาก key_name3 หรือ key_name4 เป็นโมฆะ
TacB0sS

1
ฉันมีหน้าลงทะเบียนที่เก็บข้อมูลผู้ใช้และฉันมีหน้าเข้าสู่ระบบที่ผู้ใช้ลงชื่อเข้าใช้ด้วยข้อมูลนั้น ฉันมีสองคลาสฉันรับข้อมูลหนึ่งคลาสและฉันต้องการใช้ข้อมูลนั้นคลาสอื่นเมื่อฉันใช้รหัสด้านบนในรหัสของฉัน ฉันรับข้อยกเว้นตัวชี้ null มีการใช้งานอย่างฉันหรือไม่ @ KrauszLórántSzilveszter
ZpCikTi

43

วิธีการทำให้เป็นจริง

// 0 - for private mode`
SharedPreferences pref = getApplicationContext().getSharedPreferences("MyPref", 0); 

Editor editor = pref.edit();

วิธีการจัดเก็บข้อมูลในการตั้งค่าที่ใช้ร่วมกัน?

editor.putString("key_name", "string value"); // Storing string

หรือ

editor.putInt("key_name", "int value"); //Storing integer

และอย่าลืมสมัคร:

editor.apply();

วิธีการดึงข้อมูลจากการตั้งค่าที่ใช้ร่วมกัน?

pref.getString("key_name", null); // getting String

pref.getInt("key_name", 0); // getting Integer

หวังว่าสิ่งนี้จะช่วย U :)


การกำหนดค่าเริ่มต้นเป็นสิ่งสำคัญหากคุณเข้าถึงในกิจกรรมส่วนหรือคลาสสาธารณะ
DragonFire

19

คุณสามารถสร้างคลาส SharedPreference ที่กำหนดเองของคุณ

public class YourPreference {   
    private static YourPreference yourPreference;
    private SharedPreferences sharedPreferences;

    public static YourPreference getInstance(Context context) {
        if (yourPreference == null) {
            yourPreference = new YourPreference(context);
        }
        return yourPreference;
    }

    private YourPreference(Context context) {
        sharedPreferences = context.getSharedPreferences("YourCustomNamedPreference",Context.MODE_PRIVATE);
    }

    public void saveData(String key,String value) {
        SharedPreferences.Editor prefsEditor = sharedPreferences.edit();
        prefsEditor .putString(key, value);
        prefsEditor.commit();           
    }

    public String getData(String key) {
        if (sharedPreferences!= null) {
           return sharedPreferences.getString(key, "");
        }
        return "";         
    }
}

คุณสามารถรับอินสแตนซ์ของ YourPrefrence เช่น:

YourPreference yourPrefrence = YourPreference.getInstance(context);
yourPreference.saveData(YOUR_KEY,YOUR_VALUE);

String value = yourPreference.getData(YOUR_KEY);

1
ค่าสตริง = yourPreference.getData (YOUR_KEY); ข้อผิดพลาด: สามารถอ้างอิงเนื้อหาที่ไม่คงที่ได้ในบริบทแบบคงที่
Jana Babu

สวัสดีอินสแตนซ์ของบริบทให้ฉันเป็นโมฆะดังนั้นฉันจึง putted sharedPreferences = context.getSharedPreferences ("YourCustomNamedPreference", Context.MODE_PRIVATE); บรรทัดนี้ลองใช้ catch catch และงานของมัน แต่สิ่งนี้คือเหตุผลที่ทำไมมันถึงให้ค่า Null?
Ionic

ฉันใช้คลาสนี้ในโครงการของฉันและเริ่มการแชร์การแจ้งเตือนของฉันใน BaseActivity และใช้ในกิจกรรมอื่น ๆ (splashScreen & ล็อกอิน & กิจกรรมหลัก) เพื่อตรวจสอบสถานะการเข้าสู่ระบบของผู้ใช้และออกจากแอป แต่นี่ใช้ไม่ได้กับ android 8 เพื่อออก! คุณมีข้อเสนอแนะหรือไม่?
roghayeh hosseini

17

ฉันเพิ่งพบตัวอย่างข้างต้นทั้งหมดเพียงแค่สับสนเกินไปดังนั้นฉันจึงเขียนของตัวเอง ชิ้นส่วนของรหัสนั้นใช้ได้ถ้าคุณรู้ว่าคุณกำลังทำอะไร แต่คนอย่างฉันที่ไม่ทำ

ต้องการโซลูชัน cut-n-paste แทนหรือไม่ นี่ไง!

สร้างไฟล์ java ใหม่และเรียกมันว่า Keystore จากนั้นวางรหัสนี้:

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

public class Keystore { //Did you remember to vote up my example?
    private static Keystore store;
    private SharedPreferences SP;
    private static String filename="Keys";

private Keystore(Context context) {
    SP = context.getApplicationContext().getSharedPreferences(filename,0);
}

public static Keystore getInstance(Context context) {
    if (store == null) {
        Log.v("Keystore","NEW STORE");
        store = new Keystore(context);
    }
    return store;
}

public void put(String key, String value) {//Log.v("Keystore","PUT "+key+" "+value);
    Editor editor = SP.edit();
    editor.putString(key, value);
    editor.commit(); // Stop everything and do an immediate save!
    // editor.apply();//Keep going and save when you are not busy - Available only in APIs 9 and above.  This is the preferred way of saving.
}

public String get(String key) {//Log.v("Keystore","GET from "+key);
    return SP.getString(key, null);

}

public int getInt(String key) {//Log.v("Keystore","GET INT from "+key);
    return SP.getInt(key, 0);
}

public void putInt(String key, int num) {//Log.v("Keystore","PUT INT "+key+" "+String.valueOf(num));
    Editor editor = SP.edit();

    editor.putInt(key, num);
    editor.commit();
}


public void clear(){ // Delete all shared preferences
    Editor editor = SP.edit();

    editor.clear();
    editor.commit();
}

public void remove(){ // Delete only the shared preference that you want
    Editor editor = SP.edit();

    editor.remove(filename);
    editor.commit();
}
}

ตอนนี้บันทึกไฟล์นั้นและลืมมัน คุณทำเสร็จแล้ว ตอนนี้กลับไปทำกิจกรรมของคุณแล้วใช้มันดังนี้:

public class YourClass extends Activity{

private Keystore store;//Holds our key pairs

public YourSub(Context context){
    store = Keystore.getInstance(context);//Creates or Gets our key pairs.  You MUST have access to current context!

    int= store.getInt("key name to get int value");
    string = store.get("key name to get string value");

    store.putInt("key name to store int value",int_var);
    store.put("key name to store string value",string_var);
    }
}

ฉันใช้คลาสนี้ในโครงการของฉันและเริ่มการแชร์การแจ้งเตือนของฉันใน BaseActivity และใช้ในกิจกรรมอื่น ๆ (splashScreen & ล็อกอิน & กิจกรรมหลัก) เพื่อตรวจสอบสถานะการเข้าสู่ระบบของผู้ใช้และออกจากแอป แต่นี่ใช้ไม่ได้กับ android 8 เพื่อออก! คุณมีข้อเสนอแนะหรือไม่?
roghayeh hosseini

15

Shared Preferencesเป็นไฟล์ XML เพื่อเก็บข้อมูลดั้งเดิมดั้งเดิมในคู่ของคีย์ - ค่า ชนิดข้อมูลประกอบด้วยBooleans , ลอย , ints , longsและสตริงสตริง

เมื่อเราต้องการบันทึกข้อมูลบางอย่างที่สามารถเข้าถึงได้ทั่วทั้งแอปพลิเคชันวิธีหนึ่งที่จะทำได้คือการบันทึกในตัวแปรส่วนกลาง แต่มันจะหายไปเมื่อปิดแอปพลิเคชัน SharedPreferenceและอีกวิธีที่แนะนำคือการบันทึกใน ข้อมูลที่บันทึกในไฟล์ SharedPreferences สามารถเข้าถึงได้ทั่วทั้งแอปพลิเคชันและยังคงอยู่แม้จะปิดแอปพลิเคชันหรือข้ามการรีบูต

SharedPreferencesบันทึกข้อมูลในคู่ของคีย์ - ค่าและสามารถเข้าถึงได้ในแบบเดียวกัน

คุณสามารถสร้าง Object of SharedPreferencesใช้สองวิธี

1) getSharedPreferences () : การใช้วิธีนี้คุณสามารถสร้าง Multiple SharedPreferences และพารามิเตอร์ตัวแรกในชื่อSharedPreferencesหลายพารามิเตอร์ครั้งแรกในชื่อของ

2) getPreferences () : SharedPreferencesการใช้วิธีนี้คุณสามารถสร้างโสด

การจัดเก็บข้อมูล

เพิ่มการประกาศตัวแปร / สร้างไฟล์การตั้งค่า

public static final String PREFERENCES_FILE_NAME = "MyAppPreferences";

ดึงที่จับไปยังชื่อไฟล์ (ใช้ getSharedPreferences)

SharedPreferences settingsfile= getSharedPreferences(PREFERENCES_FILE_NAME,0);

เปิดตัวแก้ไขและเพิ่มคู่คีย์ - ค่า

SharedPreferences.Editor myeditor = settingsfile.edit(); 
myeditor.putBoolean("IITAMIYO", true); 
myeditor.putFloat("VOLUME", 0.7)
myeditor.putInt("BORDER", 2)
myeditor.putLong("SIZE", 12345678910L)
myeditor.putString("Name", "Amiyo")
myeditor.apply(); 

อย่าลืมสมัคร / บันทึกการใช้งานmyeditor.apply()ตามที่แสดงไว้ด้านบน

การดึงข้อมูล

 SharedPreferences mysettings= getSharedPreferences(PREFERENCES_FILE_NAME, 0);
IITAMIYO = mysettings.getBoolean("IITAMIYO", false); 
//returns value for the given key. 
//second parameter gives the default value if no user preference found
// (set to false in above case)
VOLUME = mysettings.getFloat("VOLUME", 0.5) 
//0.5 being the default value if no volume preferences found
// and similarly there are get methods for other data types

13
public class Preferences {

public static final String PREF_NAME = "your preferences name";

@SuppressWarnings("deprecation")
public static final int MODE = Context.MODE_WORLD_WRITEABLE;

public static final String USER_ID = "USER_ID_NEW";
public static final String USER_NAME = "USER_NAME";

public static final String NAME = "NAME";
public static final String EMAIL = "EMAIL";
public static final String PHONE = "PHONE";
public static final String address = "address";

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();
}

}

**** ใช้ค่ากำหนดเพื่อเขียนค่าโดยใช้: - ****

Preferences.writeString(getApplicationContext(),
                    Preferences.NAME, "dev");

**** ใช้ค่ากำหนดเพื่ออ่านค่าโดยใช้: - ****

Preferences.readString(getApplicationContext(), Preferences.NAME,
                    "");

7

วิธีที่ดีที่สุดในการสร้างSharedPreferenceและสำหรับการใช้งานทั่วโลกคุณต้องสร้างคลาสดังนี้

public class PreferenceHelperDemo {
    private final SharedPreferences mPrefs;

    public PreferenceHelperDemo(Context context) {
        mPrefs = PreferenceManager.getDefaultSharedPreferences(context);
    }

    private String PREF_Key= "Key";

    public String getKey() {
        String str = mPrefs.getString(PREF_Key, "");
        return str;
    }

    public void setKey(String pREF_Key) {
        Editor mEditor = mPrefs.edit();
        mEditor.putString(PREF_Key, pREF_Key);
        mEditor.apply();
    }

}

PreferenceManager.getDefaultSharedPreferences ถูกคัดค้าน
Guy4444

4
SharedPreferences mPref;
SharedPreferences.Editor editor;

public SharedPrefrences(Context mContext) {
    mPref = mContext.getSharedPreferences(Constant.SharedPreferences, Context.MODE_PRIVATE);
    editor=mPref.edit();
}

public void setLocation(String latitude, String longitude) {
    SharedPreferences.Editor editor = mPref.edit();
    editor.putString("latitude", latitude);
    editor.putString("longitude", longitude);
    editor.apply();
}

public String getLatitude() {
    return mPref.getString("latitude", "");
}

public String getLongitude() {
    return mPref.getString("longitude", "");
}

public void setGCM(String gcm_id, String device_id) {
     editor.putString("gcm_id", gcm_id);
    editor.putString("device_id", device_id);
    editor.apply();
}

public String getGCMId() {
    return mPref.getString("gcm_id", "");
}

public String getDeviceId() {
    return mPref.getString("device_id", "");
}


public void setUserData(User user){

    Gson gson = new Gson();
    String json = gson.toJson(user);
    editor.putString("user", json);
    editor.apply();
}
public User getUserData(){
    Gson gson = new Gson();
    String json = mPref.getString("user", "");
    User user = gson.fromJson(json, User.class);
    return user;
}

public void setSocialMediaStatus(SocialMedialStatus status){

    Gson gson = new Gson();
    String json = gson.toJson(status);
    editor.putString("status", json);
    editor.apply();
}
public SocialMedialStatus getSocialMediaStatus(){
    Gson gson = new Gson();
    String json = mPref.getString("status", "");
    SocialMedialStatus status = gson.fromJson(json, SocialMedialStatus.class);
    return status;
}

3

เขียนถึงการตั้งค่าที่ใช้ร่วมกัน

SharedPreferences sharedPref = getActivity().getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPref.edit();
editor.putInt(getString(R.string.saved_high_score), newHighScore);
 editor.commit(); 

อ่านจากการตั้งค่าที่ใช้ร่วมกัน

SharedPreferences sharedPref = getActivity().getPreferences(Context.MODE_PRIVATE);
int defaultValue = getResources().getInteger(R.string.saved_high_score_default);
long highScore = sharedPref.getInt(getString(R.string.saved_high_score), defaultValue);

ใช้ getSharedPreferences ("MyPref", MODE_PRIVATE); แทน: getPreferences (Context.MODE_PRIVATE); เนื่องจากข้อมูลจะถูกต้องสำหรับกิจกรรมที่คุณเปิดอยู่เท่านั้น นี่เป็นเพราะในกิจกรรมนี้ชื่อไฟล์อยู่ในชื่อกิจกรรมและถ้าคุณเรียกใช้การตั้งค่านี้จากกิจกรรมอื่นข้อมูลจะแตกต่างกัน
Guy4444

0
Initialise here..
 SharedPreferences msharedpref = getSharedPreferences("msh",
                    MODE_PRIVATE);
            Editor editor = msharedpref.edit();

store data...
editor.putString("id",uida); //uida is your string to be stored
editor.commit();
finish();


fetch...
SharedPreferences prefs = this.getSharedPreferences("msh", Context.MODE_PRIVATE);
        uida = prefs.getString("id", "");

0
SharedPreferences sharedPref = getActivity().getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPref.edit();
editor.putInt(getString(R.string.saved_high_score), newHighScore);
editor.commit();

3
ยินดีต้อนรับสู่ Stack Overflow! โปรดอธิบายวิธีใช้รหัสที่คุณให้ไว้และทำไมจึงใช้งานได้ ขอบคุณ!
ต้มตุ๋น

0

คุณสามารถดูตัวอย่างโครงการที่ผ่านมาของฉันที่เขียนขึ้นเพื่อจุดประสงค์นี้ ฉันบันทึกชื่อในเครื่องและดึงข้อมูลมาตามคำขอของผู้ใช้หรือเมื่อแอปเริ่มทำงาน

แต่ในเวลานี้มันจะดีกว่าที่จะใช้commit(แทนapply) สำหรับการเก็บข้อมูล ข้อมูลเพิ่มเติมที่นี่


0
        // Create object of SharedPreferences.
        SharedPreferences sharedPref = getSharedPreferences("mypref", 0);

        //now get Editor
        SharedPreferences.Editor editor = sharedPref.edit();

        //put your value
        editor.putString("name", required_Text);

        //commits your edits
        editor.commit();

       // Its used to retrieve data
       SharedPreferences sharedPref = getSharedPreferences("mypref", 0);
       String name = sharedPref.getString("name", "");

       if (name.equalsIgnoreCase("required_Text")) {
          Log.v("Matched","Required Text Matched");
          } else {
               Log.v("Not Matched","Required Text Not Matched"); 
                 }

0

การตั้งค่าที่ใช้ร่วมกันนั้นง่ายต่อการเรียนรู้ดังนั้นให้ดูที่บทช่วยสอนง่ายๆนี้เกี่ยวกับการแปลที่ใช้ร่วมกัน

import android.os.Bundle;
import android.preference.PreferenceActivity;

    public class UserSettingActivity extends PreferenceActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

      addPreferencesFromResource(R.xml.settings);

    }
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.