मूल्यों को संग्रहीत करने, संपादित करने और संपादित करने के लिए Android में SharedPreferences का उपयोग कैसे करें [बंद]


599

मैं एक समय मान संग्रहीत करना चाहता हूं और इसे पुनर्प्राप्त और संपादित करने की आवश्यकता है। मैं इसे करने के SharedPreferencesलिए कैसे उपयोग कर सकता हूं ?


मैंने एक जेनेरिक शेयर्डप्रिफरेंस रैपर लागू किया है, एक बार देख लें: android-know-how-to.blogspot.co.il/2014/03/…
TacB0sS

इस पुस्तकालय का उपयोग करके एक सरलीकृत दृष्टिकोण होगा: github.com/viralypatel/Android-SaredPreferences- हेल्पर ... मेरे उत्तर में यहां विस्तृत तकनीकी विवरण ...
AndroidMechanic - वायरल पटेल

जवाबों:


838

साझा प्राथमिकताएँ प्राप्त करने के लिए, अपनी गतिविधि में निम्न विधि का उपयोग करें:

SharedPreferences prefs = this.getSharedPreferences(
      "com.example.app", Context.MODE_PRIVATE);

प्राथमिकताएँ पढ़ने के लिए:

String dateTimeKey = "com.example.app.datetime";

// use a default value using new Date()
long l = prefs.getLong(dateTimeKey, new Date().getTime()); 

वरीयताओं को संपादित करने और बचाने के लिए

Date dt = getSomeDate();
prefs.edit().putLong(dateTimeKey, dt.getTime()).apply();

एंड्रॉइड एसडीके के नमूना निर्देशिका में साझा वरीयताओं को पुनर्प्राप्त करने और संग्रहीत करने का एक उदाहरण है। में स्थित है:

<android-sdk-home>/samples/android-<platformversion>/ApiDemos directory

संपादित करें ==>

मैंने देखा, यहाँ commit()और apply()यहाँ के बीच अंतर लिखना महत्वपूर्ण है ।

commit()trueयदि मान अन्यथा सफलतापूर्वक सहेजा गया हो तो वापस लौटें false। यह SharedPreferences के मूल्यों को बचाने तुल्यकालिक

apply()2.3 में जोड़ा गया था और सफलता या असफलता पर कोई मूल्य वापस नहीं करता है। यह तुरंत साझा किए गए मानों को साझा करता है, लेकिन एक अतुल्यकालिक प्रतिबद्धता शुरू करता है। अधिक विस्तार यहाँ है


तो अगली बार जब उपयोगकर्ता मेरा ऐप चलाता है, तो संग्रहीत मूल्य पहले से ही है और मैं इसे प्राप्त कर सकता हूं ... सही है?
मुहम्मद मकसूदूर रहमान

4
(ऊपर पढ़ने वाले किसी व्यक्ति के लिए) हाँ यह मनमाना है। यह उदाहरण कुंजी "com.example.app.datetime" के साथ वरीयता के रूप में वर्तमान तिथि को बचाता है।
MSpeed

1
this.getSharedPreferencesमुझे निम्नलिखित त्रुटि देता है:The method getSharedPreferences(String, int) is undefined for the type MyActivity
Si8

15
SharedPreferences.Editor.apply () नवंबर, 2010 में जिंजरब्रेड में पेश किया गया था (इस उत्तर के बाद पोस्ट किया गया था)। लागू होने के बाद से (जहां संभव हो) के बजाय इसका उपयोग करें () अधिक कुशल है।
UpLate

4
Editor.apply () के लिए एपीआई स्तर 9 या उससे ऊपर की आवश्यकता होती है। नीचे कि एडिटर डॉट कॉम ()
रोलैंड

283

साझा प्राथमिकताओं में मूल्यों को संग्रहीत करने के लिए:

SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
SharedPreferences.Editor editor = preferences.edit();
editor.putString("Name","Harneet");
editor.apply();

साझा प्राथमिकताओं से मूल्यों को प्राप्त करने के लिए:

SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
String name = preferences.getString("Name", "");
if(!name.equalsIgnoreCase(""))
{
    name = name + "  Sethi";  /* Edit the value here*/
}

17
मुझे यह उत्तर सबसे अच्छा लगता है क्योंकि यह getDefaultSedenPreferences का उपयोग करता है। अधिकांश उपयोगकर्ताओं के लिए यह चीजों को सरल बना देगा क्योंकि संपूर्ण प्राथमिकताओं में समान प्राथमिकताओं को एक्सेस किया जा सकता है और आपको अपनी प्राथमिकताओं के नामकरण के बारे में चिंता करने की आवश्यकता नहीं है। उस पर अधिक यहाँ: stackoverflow.com/a/6310080/1839500
डिक लुकास

मैं सहमत हूं ... मुझे यह पता लगाने के बाद मेरे बाल खींचने की कोशिश करने के बाद मैंने स्वीकार किए गए उत्तर में विधि का उपयोग करके किसी अन्य गतिविधि से अपने साझा किए गए प्रीफ़ को एक्सेस क्यों नहीं किया। बहुत बहुत धन्यवाद!
YouAGitForNotUsingGit

मैं इसे बचाने और लोड करने के लिए कैसे उपयोग कर सकता हूं Map<DateTime, Integer>?
दिमित्री

कार्यान्वयन को सरल बनाने के लिए github.com/AliEsaAssadi/Android-Power-Preference का उपयोग करें
अली असदी

164

से डेटा संपादित करने के लिएsharedpreference

 SharedPreferences.Editor editor = getPreferences(MODE_PRIVATE).edit();
 editor.putString("text", mSaved.getText().toString());
 editor.putInt("selection-start", mSaved.getSelectionStart());
 editor.putInt("selection-end", mSaved.getSelectionEnd());
 editor.apply();

से डेटा पुनर्प्राप्त करने के लिएsharedpreference

SharedPreferences prefs = getPreferences(MODE_PRIVATE); 
String restoredText = prefs.getString("text", null);
if (restoredText != null) 
{
  //mSaved.setText(restoredText, TextView.BufferType.EDITABLE);
  int selectionStart = prefs.getInt("selection-start", -1);
  int selectionEnd = prefs.getInt("selection-end", -1);
  /*if (selectionStart != -1 && selectionEnd != -1)
  {
     mSaved.setSelection(selectionStart, selectionEnd);
  }*/
}

संपादित करें

मैंने इस स्निपेट को एपीआई डेमो नमूने से लिया। इसके पास एक EditTextबक्सा था। इसमें यह contextआवश्यक नहीं है। मैं उसी पर टिप्पणी कर रहा हूं।


12
+1, लेकिन getPreferences (MODE_PRIVATE) का उपयोग करें; getPreferences (0) के बजाय; पठनीयता के लिए।
मुख्य

यहाँ mSaved क्या है? मुझे 2 स्ट्रिंग मानों को सहेजने की आवश्यकता है।
मुहम्मद मकसूदुर रहमान

मैं यह भी जानना चाहूंगा कि mSaved क्या है। Nvm मुझे लगता है कि इसका editbox
karlstackoverflow

1
getInt में -1 का क्या मतलब है ??
amr ओसामा

1
यदि डिफ़ॉल्ट (कुंजी-चयन) साझा किए जाने वाले संदर्भों में मौजूद नहीं है, तो डिफ़ॉल्ट मान लौटाया जाएगा। यह आपके संदर्भ के लिए कुछ भी हो सकता है।
डेरागन

39

लिखना :

SharedPreferences preferences = getSharedPreferences("AUTHENTICATION_FILE_NAME", Context.MODE_WORLD_WRITEABLE);
SharedPreferences.Editor editor = preferences.edit();
editor.putString("Authentication_Id",userid.getText().toString());
editor.putString("Authentication_Password",password.getText().toString());
editor.putString("Authentication_Status","true");
editor.apply();

पढ़ने के लिए :

SharedPreferences prfs = getSharedPreferences("AUTHENTICATION_FILE_NAME", Context.MODE_PRIVATE);
String Astatus = prfs.getString("Authentication_Status", "");

MODE_WORLD_WRITE से हटा दिया गया है।
क्रिस्टोफर स्मिट

28

सबसे आसान तरीका:

बचाना:

getPreferences(MODE_PRIVATE).edit().putString("Name of variable",value).commit();

वापस पाने के लिए:

your_variable = getPreferences(MODE_PRIVATE).getString("Name of variable",default value);

मैंने गतिविधियों के बीच यह कोशिश की और यह काम नहीं किया। क्या पैकेज संरचना को var नाम में शामिल करने की आवश्यकता है?
Ga

इस संरचना का उपयोग करने के गतिविधियों के बीच PreferenceManager.getDefaultSharedPreferences साथ getPreferences (MODE_PRIVATE) (अपने ativity) की जगह
लुसियान Novac

लागू करें () के बजाय प्रतिबद्ध ()
वैभव

18

वरीयता में मान सेट करना:

// 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.commit();

वरीयता से डेटा प्राप्त करें:

SharedPreferences prefs = getSharedPreferences(MY_PREFS_NAME, MODE_PRIVATE); 
String restoredText = prefs.getString("text", null);
if (restoredText != null) {
  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.
}

और जानकारी:

साझा वरीयताएँ का उपयोग करना

वरीयताएँ साझा की


MyPrefsFile क्या है? वरीयता गतिविधि का xml?
मार्टिन एरिक

17

सिंगलटन ने वरीयताएँ साझा कीं। यह भविष्य में दूसरों के लिए मदद कर सकता है।

import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;

public class SharedPref
{
    private static SharedPreferences mSharedPref;
    public static final String NAME = "NAME";
    public static final String AGE = "AGE";
    public static final String IS_SELECT = "IS_SELECT";

    private SharedPref()
    {

    }

    public static void init(Context context)
    {
        if(mSharedPref == null)
            mSharedPref = context.getSharedPreferences(context.getPackageName(), Activity.MODE_PRIVATE);
    }

    public static String read(String key, String defValue) {
        return mSharedPref.getString(key, defValue);
    }

    public static void write(String key, String value) {
        SharedPreferences.Editor prefsEditor = mSharedPref.edit();
        prefsEditor.putString(key, value);
        prefsEditor.commit();
    }

    public static boolean read(String key, boolean defValue) {
        return mSharedPref.getBoolean(key, defValue);
    }

    public static void write(String key, boolean value) {
        SharedPreferences.Editor prefsEditor = mSharedPref.edit();
        prefsEditor.putBoolean(key, value);
        prefsEditor.commit();
    }

    public static Integer read(String key, int defValue) {
        return mSharedPref.getInt(key, defValue);
    }

    public static void write(String key, Integer value) {
        SharedPreferences.Editor prefsEditor = mSharedPref.edit();
        prefsEditor.putInt(key, value).commit();
    }
}

सीधे शब्दों में फोन SharedPref.init()पर MainActivityएक बार

SharedPref.init(getApplicationContext());

डेटा लिखने के लिए

SharedPref.write(SharedPref.NAME, "XXXX");//save string in shared preference.
SharedPref.write(SharedPref.AGE, 25);//save int in shared preference.
SharedPref.write(SharedPref.IS_SELECT, true);//save boolean in shared preference.

डेटा पढ़ने के लिए

String name = SharedPref.read(SharedPref.NAME, null);//read string in shared preference.
int age = SharedPref.read(SharedPref.AGE, 0);//read int in shared preference.
boolean isSelect = SharedPref.read(SharedPref.IS_SELECT, false);//read boolean in shared preference.

15

जानकारी संग्रहीत करने के लिए

SharedPreferences preferences = getSharedPreferences(PREFS_NAME,Context.MODE_PRIVATE);
SharedPreferences.Editor editor = preferences.edit();
editor.putString("username", username.getText().toString());
editor.putString("password", password.getText().toString());
editor.putString("logged", "logged");
editor.commit();

अपनी प्राथमिकताओं को रीसेट करने के लिए

SharedPreferences.Editor editor = preferences.edit();
editor.clear();
editor.commit();

12

यदि आप अपनी टीम में अन्य डेवलपर्स के साथ एक बड़ा आवेदन कर रहे हैं और बिखरे हुए कोड या अलग-अलग शेयर्डप्रिफ़ेंस इंस्टेंस के बिना सब कुछ अच्छी तरह से आयोजित करने का इरादा रखते हैं, तो आप ऐसा कुछ कर सकते हैं:

//SharedPreferences manager class
public class SharedPrefs {

    //SharedPreferences file name
    private static String SHARED_PREFS_FILE_NAME = "my_app_shared_prefs";

    //here you can centralize all your shared prefs keys
    public static String KEY_MY_SHARED_BOOLEAN = "my_shared_boolean";
    public static String KEY_MY_SHARED_FOO = "my_shared_foo";

    //get the SharedPreferences object instance
    //create SharedPreferences file if not present


    private static SharedPreferences getPrefs(Context context) {
        return context.getSharedPreferences(SHARED_PREFS_FILE_NAME, Context.MODE_PRIVATE);
    }

    //Save Booleans
    public static void savePref(Context context, String key, boolean value) {
        getPrefs(context).edit().putBoolean(key, value).commit();       
    }

    //Get Booleans
    public static boolean getBoolean(Context context, String key) {
        return getPrefs(context).getBoolean(key, false);
    }

    //Get Booleans if not found return a predefined default value
    public static boolean getBoolean(Context context, String key, boolean defaultValue) {
        return getPrefs(context).getBoolean(key, defaultValue);
    }

    //Strings
    public static void save(Context context, String key, String value) {
        getPrefs(context).edit().putString(key, value).commit();
    }

    public static String getString(Context context, String key) {
        return getPrefs(context).getString(key, "");
    }

    public static String getString(Context context, String key, String defaultValue) {
        return getPrefs(context).getString(key, defaultValue);
    }

    //Integers
    public static void save(Context context, String key, int value) {
        getPrefs(context).edit().putInt(key, value).commit();
    }

    public static int getInt(Context context, String key) {
        return getPrefs(context).getInt(key, 0);
    }

    public static int getInt(Context context, String key, int defaultValue) {
        return getPrefs(context).getInt(key, defaultValue);
    }

    //Floats
    public static void save(Context context, String key, float value) {
        getPrefs(context).edit().putFloat(key, value).commit();
    }

    public static float getFloat(Context context, String key) {
        return getPrefs(context).getFloat(key, 0);
    }

    public static float getFloat(Context context, String key, float defaultValue) {
        return getPrefs(context).getFloat(key, defaultValue);
    }

    //Longs
    public static void save(Context context, String key, long value) {
        getPrefs(context).edit().putLong(key, value).commit();
    }

    public static long getLong(Context context, String key) {
        return getPrefs(context).getLong(key, 0);
    }

    public static long getLong(Context context, String key, long defaultValue) {
        return getPrefs(context).getLong(key, defaultValue);
    }

    //StringSets
    public static void save(Context context, String key, Set<String> value) {
        getPrefs(context).edit().putStringSet(key, value).commit();
    }

    public static Set<String> getStringSet(Context context, String key) {
        return getPrefs(context).getStringSet(key, null);
    }

    public static Set<String> getStringSet(Context context, String key, Set<String> defaultValue) {
        return getPrefs(context).getStringSet(key, defaultValue);
    }
}

आपकी गतिविधि में आप इस तरह से साझा किए गए साझा सहेज सकते हैं

//saving a boolean into prefs
SharedPrefs.savePref(this, SharedPrefs.KEY_MY_SHARED_BOOLEAN, booleanVar);

और आप अपने साझाकरण को इस तरह से पुनः प्राप्त कर सकते हैं

//getting a boolean from prefs
booleanVar = SharedPrefs.getBoolean(this, SharedPrefs.KEY_MY_SHARED_BOOLEAN);

12

किसी भी एप्लिकेशन में, डिफ़ॉल्ट प्राथमिकताएं होती हैं जो PreferenceManagerइंस्टेंस और उसके संबंधित विधि के माध्यम से एक्सेस की जा सकती हैं getDefaultSharedPreferences(Context)

साथ SharedPreferenceउदाहरण एक के साथ किसी भी वरीयता के पूर्णांक मान प्राप्त कर सकता getInt (स्ट्रिंग कुंजी, defVal पूर्णांक) । इस मामले में हम जिस प्राथमिकता में रुचि रखते हैं वह काउंटर है।

हमारे मामले में, हम SharedPreferenceसंपादित करें () का उपयोग करके अपने मामले में उदाहरण को संशोधित कर सकते हैं और putInt(String key, int newVal)हमने अपने आवेदन के लिए गिनती बढ़ा दी है जो आवेदन से परे मौजूद है और तदनुसार प्रदर्शित किया गया है।

इसे आगे डेमो करने के लिए, पुनः आरंभ करें और आप फिर से आवेदन करें, आप देखेंगे कि हर बार जब आप आवेदन पुनः आरंभ करेंगे तो गिनती बढ़ जाएगी।

PreferencesDemo.java

कोड:

package org.example.preferences;
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.widget.TextView;

public class PreferencesDemo extends Activity {
   /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // Get the app's shared preferences
        SharedPreferences app_preferences = 
        PreferenceManager.getDefaultSharedPreferences(this);

        // Get the value for the run counter
        int counter = app_preferences.getInt("counter", 0);

        // Update the TextView
        TextView text = (TextView) findViewById(R.id.text);
        text.setText("This app has been started " + counter + " times.");

        // Increment the counter
        SharedPreferences.Editor editor = app_preferences.edit();
        editor.putInt("counter", ++counter);
        editor.commit(); // Very important
    }
}

main.xml

कोड:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent" >

        <TextView
            android:id="@+id/text"  
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:text="@string/hello" />
</LinearLayout>

8

में लॉगिन मूल्य कैसे संग्रहित करें इसका सरल उपाय SharedPreferences

आप उस MainActivityवर्ग या अन्य वर्ग का विस्तार कर सकते हैं, जहाँ आप "जिस चीज़ को रखना चाहते हैं उसका मूल्य" संग्रहीत करेंगे। इसे लेखक और पाठक वर्ग में रखें:

public static final String GAME_PREFERENCES_LOGIN = "Login";

यहां InputClassइनपुट है और OutputClassक्रमशः आउटपुट क्लास है।

// This is a storage, put this in a class which you can extend or in both classes:
//(input and output)
public static final String GAME_PREFERENCES_LOGIN = "Login";

// String from the text input (can be from anywhere)
String login = inputLogin.getText().toString();

// then to add a value in InputCalss "SAVE",
SharedPreferences example = getSharedPreferences(GAME_PREFERENCES_LOGIN, 0);
Editor editor = example.edit();
editor.putString("value", login);
editor.commit();

अब आप इसे अन्य वर्ग की तरह कहीं और उपयोग कर सकते हैं। वह इस प्रकार है OutputClass

SharedPreferences example = getSharedPreferences(GAME_PREFERENCES_LOGIN, 0);
String userString = example.getString("value", "defValue");

// the following will print it out in console
Logger.getLogger("Name of a OutputClass".class.getName()).log(Level.INFO, userString);

8

SharedPreferences में स्टोर करें

SharedPreferences preferences = getSharedPreferences("temp", getApplicationContext().MODE_PRIVATE);
Editor editor = preferences.edit();
editor.putString("name", name);
editor.commit();

साझा किए गए सम्मेलनों में प्राप्त करें

SharedPreferences preferences=getSharedPreferences("temp", getApplicationContext().MODE_PRIVATE);
String name=preferences.getString("name",null);

नोट: "अस्थायी" साझा नाम है और "नाम" इनपुट मूल्य है। यदि मान बाहर नहीं निकलता है, तो शून्य वापस लौटें


उपयोग करने के लिए बहुत अच्छा और आसान है। लेकिन यहाँ Context.MODE_PRIVATE नहीं मिल रहा हैApplicationConxt ()। MODE_PRIVATE
मारिया

7

संपादित करें

SharedPreferences pref = getSharedPreferences("YourPref", MODE_PRIVATE);
SharedPreferences.Editor editor = pref.edit();
editor.putString("yourValue", value);
editor.commit();

पढ़ें

SharedPreferences pref = getSharedPreferences("YourPref", MODE_PRIVATE);
value= pref.getString("yourValue", "");

6

SharedPreferences का मूल विचार XML फ़ाइल पर चीजों को संग्रहीत करना है।

  1. अपने xml फ़ाइल पथ की घोषणा करें (यदि आपके पास यह फ़ाइल नहीं है, तो Android इसे बनाएगा। यदि आपके पास यह फ़ाइल है, तो Android इसे एक्सेस करेगा।)

    SharedPreferences prefs = this.getSharedPreferences("com.example.app", Context.MODE_PRIVATE);
  2. साझा प्राथमिकताएं मान लिखें

    prefs.edit().putLong("preference_file_key", 1010101).apply();

    preference_file_keyसाझा वरीयता फ़ाइलों का नाम है। और वह 1010101मूल्य है जिसे आपको संग्रहीत करने की आवश्यकता है।

    apply()अंत में परिवर्तनों को सहेजना है। यदि आपको इससे त्रुटि मिलती है apply(), तो इसे बदल दें commit()। तो यह वैकल्पिक वाक्य है

    prefs.edit().putLong("preference_file_key", 1010101).commit();
  3. साझा प्राथमिकताएं पढ़ें

    SharedPreferences sp = this.getSharedPreferences("com.example.app", Context.MODE_PRIVATE);
    long lsp = sp.getLong("preference_file_key", -1);

    lspहोगा -1यदि preference_file_keyकोई मूल्य नहीं है। यदि 'प्राथमिकता_फाइल_की' का मान है, तो यह इस का मान लौटाएगा।

लिखने के लिए पूरा कोड है

    SharedPreferences prefs = this.getSharedPreferences("com.example.app", Context.MODE_PRIVATE);    // Declare xml file
    prefs.edit().putLong("preference_file_key", 1010101).apply();    // Write the value to key.

पढ़ने के लिए कोड है

    SharedPreferences sf = this.getSharedPreferences("com.example.app", Context.MODE_PRIVATE);    // Declare xml file
    long lsp = sp.getLong("preference_file_key", -1);    // Read the key and store in lsp

Editor.apply () के लिए एपीआई स्तर 9 या उससे ऊपर की आवश्यकता होती है। नीचे कि एडिटर डॉट कॉम ()
रोलैंड

6

आप इस पद्धति का उपयोग करके मूल्य बचा सकते हैं:

public void savePreferencesForReasonCode(Context context,
    String key, String value) {
    SharedPreferences sharedPreferences = PreferenceManager
    .getDefaultSharedPreferences(context);
    SharedPreferences.Editor editor = sharedPreferences.edit();
    editor.putString(key, value);
    editor.commit();
    }

और इस विधि का उपयोग करके आप SharedPreferences से मूल्य प्राप्त कर सकते हैं:

public String getPreferences(Context context, String prefKey) {
  SharedPreferences sharedPreferences = PreferenceManager
 .getDefaultSharedPreferences(context);
 return sharedPreferences.getString(prefKey, "");
}

यहां prefKeyवह कुंजी है जिसका उपयोग आपने विशिष्ट मान को सहेजने के लिए किया था। धन्यवाद।


बुलियन के बारे में क्या?
यौषा अलायबौ

इस पंक्ति का उपयोग करके सहेजें: editor.putString (कुंजी, मान); इस लाइन का उपयोग करें: बूलियन yourLocked = prefs.getBoolean ("लॉक", गलत);
मो। सजदुल करीम

6
editor.putString("text", mSaved.getText().toString());

यहां, mSavedकोई भी हो सकता है TextViewया EditTextजहां से हम एक स्ट्रिंग निकाल सकते हैं। आप बस एक स्ट्रिंग निर्दिष्ट कर सकते हैं। यहां टेक्स्ट वह कुंजी होगी जो mSaved( TextViewया EditText) से प्राप्त मूल्य को रखती है ।

SharedPreferences prefs = this.getSharedPreferences("com.example.app", Context.MODE_PRIVATE);

इसके अलावा पैकेज नाम, "com.example.app" का उपयोग करके वरीयता फ़ाइल को सहेजने की कोई आवश्यकता नहीं है। आप अपने खुद के पसंदीदा नाम का उल्लेख कर सकते हैं। उम्मीद है की यह मदद करेगा !


5

ऐसे कई तरीके हैं जिनसे लोग सलाह देते हैं कि शेयर्डप्रिफरेंस का उपयोग कैसे करें । मैंने यहां एक डेमो प्रोजेक्ट बनाया है । नमूने में मुख्य बिंदु ApplicationContext और एकल साझाकरण ऑब्जेक्ट का उपयोग करना है । यह दर्शाता है कि निम्नलिखित विशेषताओं के साथ साझाकरण का उपयोग कैसे करें : -

  • SharedPreferences तक पहुँचने / अपडेट करने के लिए सिंगलटन क्लास का उपयोग करना
  • SharedPreferences पढ़ने / लिखने के लिए हमेशा संदर्भ पास करने की आवश्यकता नहीं होती है
  • यह लागू होता है () के बजाय प्रतिबद्ध ()
  • लागू करें () एसिंक्रोनस सेव है, कुछ भी वापस नहीं करता है, यह पहले मेमोरी में अपडेट वैल्यू अपडेट करता है और बाद में एसिंक्रोनसली डिस्क में परिवर्तन लिखा जाता है।
  • प्रतिबद्ध () सिंक्रोनस सेव है, यह परिणाम के आधार पर सही / गलत है। परिवर्तन को सिंक्रोनस डिस्क में लिखा जाता है
  • Android 2.3+ वर्जन पर काम करता है

नीचे के रूप में उपयोग उदाहरण: -

MyAppPreference.getInstance().setSampleStringKey("some_value");
String value= MyAppPreference.getInstance().getSampleStringKey();

यहाँ स्रोत कोड प्राप्त करें और विस्तृत एपीआईडेवलपर .android.com पर यहाँ पाया जा सकताहै


अरे, मेरे पास साझा प्राथमिकताएं पर एक प्रश्न है। क्या आपको इसका जवाब देना बुरा लगता है? stackoverflow.com/questions/35713822/…
रुचिर बैरोनिया

5

सर्वोत्तम अभ्यास

वरीयता के साथ नामित इंटरफ़ेस बनाएँ :

// Interface to save values in shared preferences and also for retrieve values from shared preferences
public interface PreferenceManager {

    SharedPreferences getPreferences();
    Editor editPreferences();

    void setString(String key, String value);
    String getString(String key);

    void setBoolean(String key, boolean value);
    boolean getBoolean(String key);

    void setInteger(String key, int value);
    int getInteger(String key);

    void setFloat(String key, float value);
    float getFloat(String key);

}

गतिविधि / विखंडन के साथ उपयोग कैसे करें :

public class HomeActivity extends AppCompatActivity implements PreferenceManager{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout_activity_home);
    }

    @Override
    public SharedPreferences getPreferences(){
        return getSharedPreferences("SP_TITLE", Context.MODE_PRIVATE);
    }

    @Override
    public SharedPreferences.Editor editPreferences(){
        return getPreferences().edit();
    }

    @Override
    public void setString(String key, String value) {
        editPreferences().putString(key, value).commit();
    }

    @Override
    public String getString(String key) {
        return getPreferences().getString(key, "");
    }

    @Override
    public void setBoolean(String key, boolean value) {
        editPreferences().putBoolean(key, value).commit();
    }

    @Override
    public boolean getBoolean(String key) {
        return  getPreferences().getBoolean(key, false);
    }

    @Override
    public void setInteger(String key, int value) {
        editPreferences().putInt(key, value).commit();
    }

    @Override
    public int getInteger(String key) {
        return getPreferences().getInt(key, 0);
    }

    @Override
    public void setFloat(String key, float value) {
        editPreferences().putFloat(key, value).commit();
    }

    @Override
    public float getFloat(String key) {
        return getPreferences().getFloat(key, 0);
    }
}

नोट: अपनी कुंजी को SP_TITLE के साथ साझा करें की जगह ले लें ।

उदाहरण:

स्‍पेयरिंग में स्‍टोर स्ट्रिंग :

setString("my_key", "my_value");

Shareperence से स्ट्रिंग प्राप्त करें :

String strValue = getString("my_key");

आशा है कि यह आपकी मदद करेगा।


क्या मैं सब कुछ संग्रहीत करने के लिए समान साझा प्राथमिकता ऑब्जेक्ट का उपयोग करता हूं, या क्या मैं डेटा के प्रत्येक अलग टुकड़े के लिए नई साझा प्रीफ़ ऑब्जेक्ट बनाता हूं?
रुचिर बारोनिया

@ रुचिर बरोनिया, अलग-अलग ऑब्जेक्ट्स बनाने की आवश्यकता नहीं है, वैसे आपको साझा वरीयताओं के ऑब्जेक्ट को इनिशियलाइज़ करने की आवश्यकता नहीं है। आप ऊपर के रास्ते से बचा सकते हैं। अगर मेरी ओर से कुछ भी आवश्यक हो तो मुझे बताएं।
हिरेन पटेल

ठीक है शुक्रिया। क्या आप इसमें मेरी सहायता कर सकते है? stackoverflow.com/questions/35235759/…
रुचिर बारोनिया

@ रुचिर बरोनिया, आप धागा रद्द कर सकते हैं। आशा है कि यह आपकी मदद करता है।
हिरेन पटेल

ओह, मुझे बहुत खेद है, मैंने गलत प्रश्न रखा है। इसका मतलब, इसके बारे में, साझा प्राथमिकताओं के बारे में पूछना है: stackoverflow.com/questions/35244256/issue-with-if-statement/…
रुचिर बरोनिया

5

साझा प्राथमिकताओं में मूल्यों को संग्रहीत करने के लिए:

SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
SharedPreferences.Editor editor = sp.edit();
editor.putString("Name","Jayesh");
editor.commit();

साझा प्राथमिकताओं से मूल्यों को प्राप्त करने के लिए:

SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
String name = sp.getString("Name", ""); // Second parameter is the default value.

4

बचाना

PreferenceManager.getDefaultSharedPreferences(this).edit().putString("VarName","your value").apply();

वापस लेने के लिए:

String name = PreferenceManager.getDefaultSharedPreferences(this).getString("VarName","defaultValue");

डिफ़ॉल्ट मान है: यदि यह वरीयता मौजूद नहीं है तो मान लौटाएं।

आप कुछ मामलों में getActivity () या getApplicationContext () के साथ " इसे " बदल सकते हैं


अरे, मेरे पास साझा प्राथमिकताएं पर एक प्रश्न है। क्या आपको इसका जवाब देना बुरा लगता है? stackoverflow.com/questions/35713822/…
रुचिर बैरोनिया

हां, मैंने किया ... :)
रुचिर बैरोनिया

3

मैं साझाकरण के लिए एक सहायक वर्ग लिखता हूं:

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

/**
 * Created by mete_ on 23.12.2016.
 */
public class HelperSharedPref {

Context mContext;

public HelperSharedPref(Context mContext) {
    this.mContext = mContext;
}

/**
 *
 * @param key Constant RC
 * @param value Only String, Integer, Long, Float, Boolean types
 */
public void saveToSharedPref(String key, Object value) throws Exception {
    SharedPreferences.Editor editor = mContext.getSharedPreferences(key, Context.MODE_PRIVATE).edit();
    if (value instanceof String) {
        editor.putString(key, (String) value);
    } else if (value instanceof Integer) {
        editor.putInt(key, (Integer) value);
    } else if (value instanceof Long) {
        editor.putLong(key, (Long) value);
    } else if (value instanceof Float) {
        editor.putFloat(key, (Float) value);
    } else if (value instanceof Boolean) {
        editor.putBoolean(key, (Boolean) value);
    } else {
        throw new Exception("Unacceptable object type");
    }

    editor.commit();
}

/**
 * Return String
 * @param key
 * @return null default is null
 */
public String loadStringFromSharedPref(String key) throws Exception {
    SharedPreferences prefs = mContext.getSharedPreferences(key, Context.MODE_PRIVATE);
    String restoredText = prefs.getString(key, null);

    return restoredText;
}

/**
 * Return int
 * @param key
 * @return null default is -1
 */
public Integer loadIntegerFromSharedPref(String key) throws Exception {
    SharedPreferences prefs = mContext.getSharedPreferences(key, Context.MODE_PRIVATE);
    Integer restoredText = prefs.getInt(key, -1);

    return restoredText;
}

/**
 * Return float
 * @param key
 * @return null default is -1
 */
public Float loadFloatFromSharedPref(String key) throws Exception {
    SharedPreferences prefs = mContext.getSharedPreferences(key, Context.MODE_PRIVATE);
    Float restoredText = prefs.getFloat(key, -1);

    return restoredText;
}

/**
 * Return long
 * @param key
 * @return null default is -1
 */
public Long loadLongFromSharedPref(String key) throws Exception {
    SharedPreferences prefs = mContext.getSharedPreferences(key, Context.MODE_PRIVATE);
    Long restoredText = prefs.getLong(key, -1);

    return restoredText;
}

/**
 * Return boolean
 * @param key
 * @return null default is false
 */
public Boolean loadBooleanFromSharedPref(String key) throws Exception {
    SharedPreferences prefs = mContext.getSharedPreferences(key, Context.MODE_PRIVATE);
    Boolean restoredText = prefs.getBoolean(key, false);

    return restoredText;
}

}

3

इस उदाहरण का उपयोग सरल और स्पष्ट और जाँच करें

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.sairamkrishna.myapplication" >

   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:theme="@style/AppTheme" >

      <activity
         android:name=".MainActivity"
         android:label="@string/app_name" >

         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>

      </activity>

   </application>
</manifest>
public class MainActivity extends AppCompatActivity {
   EditText ed1,ed2,ed3;
   Button b1;

   public static final String MyPREFERENCES = "MyPrefs" ;
   public static final String Name = "nameKey";
   public static final String Phone = "phoneKey";
   public static final String Email = "emailKey";

   SharedPreferences sharedpreferences;

   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);

      ed1=(EditText)findViewById(R.id.editText);
      ed2=(EditText)findViewById(R.id.editText2);
      ed3=(EditText)findViewById(R.id.editText3);

      b1=(Button)findViewById(R.id.button);
      sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);

      b1.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            String n  = ed1.getText().toString();
            String ph  = ed2.getText().toString();
            String e  = ed3.getText().toString();

            SharedPreferences.Editor editor = sharedpreferences.edit();

            editor.putString(Name, n);
            editor.putString(Phone, ph);
            editor.putString(Email, e);
            editor.commit();
            Toast.makeText(MainActivity.this,"Thanks",Toast.LENGTH_LONG).show();
         }
      });
   }

}

2

इस सरल पुस्तकालय का उपयोग करते हुए , यहां बताया गया है कि आप साझा करने के लिए कॉल कैसे करते हैं ..

TinyDB tinydb = new TinyDB(context);

tinydb.putInt("clickCount", 2);

tinydb.putString("userName", "john");
tinydb.putBoolean("isUserMale", true); 

tinydb.putList("MyUsers", mUsersArray);
tinydb.putImagePNG("DropBox/WorkImages", "MeAtlunch.png", lunchBitmap);

//These plus the corresponding get methods are all Included

2

मैं यहां यह जोड़ना चाहता था कि इस प्रश्न के लिए अधिकांश स्निपेट में कुछ साझा मोड का उपयोग करते समय MODE_PRIVATE जैसा कुछ होगा। खैर, MODE_PRIVATE का अर्थ है कि आप इस साझा प्राथमिकता में जो कुछ भी लिखते हैं वह केवल आपके आवेदन द्वारा ही पढ़ा जा सकता है।

जो भी कुंजी आप getSaredPreferences () विधि से पास करते हैं, android उस नाम से एक फ़ाइल बनाता है और उसमें वरीयता डेटा संग्रहीत करता है। यह भी याद रखें कि जब आप अपने आवेदन के लिए कई वरीयता फ़ाइलें रखना चाहते हैं, तो getSaringPreferences () का उपयोग किया जाना चाहिए। यदि आप एकल वरीयता फ़ाइल का उपयोग करने का इरादा रखते हैं और इसमें सभी कुंजी-मूल्य जोड़े संग्रहीत करते हैं, तो getSedenPreference () विधि का उपयोग करें। इसके अजीब क्यों हर कोई (खुद सहित) बस ऊपर दिए गए दो के बीच के अंतर को समझने के बिना getSaredPreferences () स्वाद का उपयोग करता है।

निम्नलिखित वीडियो ट्यूटोरियल को https://www.youtube.com/watch?v=2PcAQ1NBy98 मदद करनी चाहिए


2

सरल और परेशानी मुक्त :: "Android-SharedPreferences-Helper" पुस्तकालय

देर से बेहतर कभी नहीं: मैंने उपयोग करने की जटिलता और प्रयास को कम करने में मदद करने के लिए "एंड्रॉइड-शेयर्डप्रिफरेंस-हेल्पर" लाइब्रेरी बनाई SharedPreferences। यह कुछ विस्तारित कार्यक्षमता भी प्रदान करता है। कुछ चीजें जो इसे प्रदान करती हैं वे इस प्रकार हैं:

  • एक पंक्ति आरंभीकरण और सेटअप
  • आसानी से चयन करना कि क्या डिफ़ॉल्ट वरीयताएँ या एक कस्टम प्राथमिकता फ़ाइल का उपयोग करना है
  • प्रत्येक डेटाटाइप के लिए पूर्वनिर्धारित (डेटा प्रकार की चूक) और अनुकूलन (आप क्या चुन सकते हैं) डिफ़ॉल्ट मान
  • सिर्फ एक अतिरिक्त परम के साथ एकल उपयोग के लिए अलग-अलग डिफ़ॉल्ट मान सेट करने की क्षमता
  • जैसा कि आप डिफ़ॉल्ट वर्ग के लिए करते हैं, आप रजिस्टर कर सकते हैं और OnSaringPreferenceChangeListener को पंजीकृत कर सकते हैं
dependencies {
    ...
    ...
    compile(group: 'com.viralypatel.sharedpreferenceshelper', name: 'library', version: '1.1.0', ext: 'aar')
}

SharedPreferencesHelper ऑब्जेक्ट की घोषणा: (वर्ग स्तर पर अनुशंसित)

SharedPreferencesHelper sph; 

SharedPreferencesHelper ऑब्जेक्ट का इंस्टेंटेशन: (onCreate () विधि में अनुशंसित)

// use one of the following ways to instantiate
sph = new SharedPreferencesHelper(this); //this will use default shared preferences
sph = new SharedPreferencesHelper(this, "myappprefs"); // this will create a named shared preference file
sph = new SharedPreferencesHelper(this, "myappprefs", 0); // this will allow you to specify a mode

साझा प्राथमिकताओं में मूल्यों को लाना

काफी सरल! डिफ़ॉल्ट तरीके के विपरीत (शेयर्डप्रिफरेंस क्लास का उपयोग करते समय) आपको कॉल करने .edit()और .commit()कभी भी समय की आवश्यकता नहीं होगी ।

sph.putBoolean("boolKey", true);
sph.putInt("intKey", 123);
sph.putString("stringKey", "string value");
sph.putLong("longKey", 456876451);
sph.putFloat("floatKey", 1.51f);

// putStringSet is supported only for android versions above HONEYCOMB
Set name = new HashSet();
name.add("Viral");
name.add("Patel");
sph.putStringSet("name", name);

बस! आपके मूल्य साझा प्राथमिकताओं में संग्रहीत हैं।

साझा प्राथमिकताओं से मूल्यों को प्राप्त करना

फिर, केवल एक सरल विधि कुंजी नाम के साथ कॉल करें।

sph.getBoolean("boolKey");
sph.getInt("intKey");
sph.getString("stringKey");
sph.getLong("longKey");
sph.getFloat("floatKey");

// getStringSet is supported only for android versions above HONEYCOMB
sph.getStringSet("name");

यह अन्य विस्तारित कार्यक्षमता का एक बहुत कुछ है

GitHub रिपॉजिटरी पेज पर विस्तारित कार्यक्षमता, उपयोग और स्थापना निर्देशों आदि का विवरण देखें ।


क्या मैं सब कुछ संग्रहीत करने के लिए समान साझा प्राथमिकता ऑब्जेक्ट का उपयोग करता हूं, या क्या मैं डेटा के प्रत्येक अलग टुकड़े के लिए नई साझा प्रीफ़ ऑब्जेक्ट बनाता हूं?
रुचिर बारोनिया

आपको जितना संभव हो उतना ही उपयोग करना चाहिए। इस लाइब्रेरी को बनाने की पूरी बात है।
AndroidMechanic - वायरल पटेल

अरे, मेरे पास साझा प्राथमिकताएं पर एक प्रश्न है। क्या आपको इसका जवाब देना बुरा लगता है? stackoverflow.com/questions/35713822/…
रुचिर बैरोनिया

2
SharedPreferences.Editor editor = getSharedPreferences("identifier", 
MODE_PRIVATE).edit();
//identifier is the unique to fetch data from your SharedPreference.


editor.putInt("keyword", 0); 
// saved value place with 0.
//use this "keyword" to fetch saved value again.
editor.commit();//important line without this line your value is not stored in preference   

// fetch the stored data using ....

SharedPreferences prefs = getSharedPreferences("identifier", MODE_PRIVATE); 
// here both identifier will same

int fetchvalue = prefs.getInt("keyword", 0);
// here keyword will same as used above.
// 0 is default value when you nothing save in preference that time fetch value is 0.

आपको AdapterClass या किसी भी अन्य में SharedPreferences का उपयोग करने की आवश्यकता है। उस समय केवल इस घोषणा का उपयोग करें और ऊपर एक ही गधे का उपयोग करें।

SharedPreferences.Editor editor = context.getSharedPreferences("idetifier", 
Context.MODE_PRIVATE).edit();
SharedPreferences prefs = context.getSharedPreferences("identifier", Context.MODE_PRIVATE);

//here context is your application context

स्ट्रिंग या बूलियन मूल्य के लिए

editor.putString("stringkeyword", "your string"); 
editor.putBoolean("booleankeyword","your boolean value");
editor.commit();

डेटा ऊपर के रूप में समान लाएं

String fetchvalue = prefs.getString("keyword", "");
Boolean fetchvalue = prefs.getBoolean("keyword", "");

2

2. साझा प्रीफ्रेंस में भंडारण के लिए

SharedPreferences.Editor editor = 
getSharedPreferences("DeviceToken",MODE_PRIVATE).edit();
                    editor.putString("DeviceTokenkey","ABABABABABABABB12345");
editor.apply();

2. एक ही उपयोग को पुनः प्राप्त करने के लिए

    SharedPreferences prefs = getSharedPreferences("DeviceToken", 
 MODE_PRIVATE);
  String deviceToken = prefs.getString("DeviceTokenkey", null);

1

यहाँ मैंने android में वरीयताओं का उपयोग करने के लिए एक हेल्पर वर्ग बनाया है।

यह सहायक वर्ग है:

public class PrefsUtil {

public static SharedPreferences getPreference() {
    return PreferenceManager.getDefaultSharedPreferences(Applicatoin.getAppContext());
}

public static void putBoolean(String key, boolean value) {
    getPreference().edit().putBoolean(key, value)
            .apply();
}

public static boolean getBoolean(String key) {
    return getPreference().getBoolean(key, false);
}

public static void putInt(String key, int value) {

    getPreference().edit().putInt(key, value).apply();

}

public static void delKey(String key) {

    getPreference().edit().remove(key).apply();

}

}

1

फ़ंक्शन तरीके से वैश्विक चर को संग्रहीत और पुनर्प्राप्त करना। परीक्षण करने के लिए, सुनिश्चित करें कि आपके पास अपने पृष्ठ पर टेक्स्टव्यू आइटम हैं, कोड में दो लाइनों को अनइंस्टॉल करें और चलाएं। फिर दो पंक्तियों को फिर से टिप्पणी करें, और चलाएं।
यहां TextView की आईडी यूजरनेम और पासवर्ड है।

प्रत्येक कक्षा में जहाँ आप इसका उपयोग करना चाहते हैं, अंत में इन दोनों दिनचर्याओं को जोड़ें। मैं चाहूंगा कि यह दिनचर्या वैश्विक दिनचर्या हो, लेकिन पता नहीं कैसे। यह काम।

चर सभी जगह उपलब्ध हैं। यह "MyFile" में चर को संग्रहीत करता है। आप इसे अपने तरीके से बदल सकते हैं।

आप इसका उपयोग करके कहते हैं

 storeSession("username","frans");
 storeSession("password","!2#4%");***

चर उपयोगकर्ता नाम "frans" और पासवर्ड ""! 2 # 4% "" से भरा जाएगा। पुनरारंभ के बाद भी वे उपलब्ध हैं।

और आप इसका उपयोग करके पुनः प्राप्त करते हैं

 password.setText(getSession(("password")));
 usernames.setText(getSession(("username")));

मेरे ग्रिड के पूरे कोड के नीचे। जावा

    package nl.yentel.yenteldb2;
    import android.content.SharedPreferences;
    import android.os.Bundle;
    import android.support.design.widget.FloatingActionButton;
    import android.support.design.widget.Snackbar;
    import android.support.v7.app.AppCompatActivity;
    import android.support.v7.widget.Toolbar;
    import android.view.View;
    import android.widget.EditText;
    import android.widget.TextView;

    public class Grid extends AppCompatActivity {
    private TextView usernames;
    private TextView password;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_grid);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }
        });
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

      ***//  storeSession("username","frans.eilering@gmail.com");
        //storeSession("password","mijn wachtwoord");***
        password = (TextView) findViewById(R.id.password);
        password.setText(getSession(("password")));
        usernames=(TextView) findViewById(R.id.username);
        usernames.setText(getSession(("username")));
    }

    public void storeSession(String key, String waarde) { 
        SharedPreferences pref = getApplicationContext().getSharedPreferences("MyFile", MODE_PRIVATE);
        SharedPreferences.Editor editor = pref.edit();
        editor.putString(key, waarde);
        editor.commit();
    }

    public String getSession(String key) {
//http://androidexample.com/Android_SharedPreferences_Basics/index.php?view=article_discription&aid=126&aaid=146
        SharedPreferences pref = getApplicationContext().getSharedPreferences("MyFile", MODE_PRIVATE);
        SharedPreferences.Editor editor = pref.edit();
        String output = pref.getString(key, null);
        return output;
    }

    }

नीचे आपको टेक्स्टव्यू आइटम मिलेंगे

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="usernames"
    android:id="@+id/username"
    android:layout_below="@+id/textView"
    android:layout_alignParentStart="true"
    android:layout_marginTop="39dp"
    android:hint="hier komt de username" />

 <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="password"
    android:id="@+id/password"
    android:layout_below="@+id/user"
    android:layout_alignParentStart="true"
    android:hint="hier komt het wachtwoord" />

1

मैंने अपने जीवन को आसान बनाने के लिए एक हेल्पर क्लास बनाई है। यह एक सामान्य वर्ग है और इसमें बहुत सारे तरीके हैं जो आमतौर पर साझा प्राथमिकताएं, ईमेल वैधता, तिथि समय प्रारूप जैसे ऐप्स में उपयोग किए जाते हैं। इस कोड को अपने कोड में कॉपी करें और जहां कहीं भी जरूरत हो, वहां तक ​​पहुंचें।

 import android.app.AlertDialog;
 import android.app.ProgressDialog;
 import android.content.Context;
 import android.content.DialogInterface;
 import android.content.SharedPreferences;
 import android.support.v4.app.FragmentActivity;
 import android.view.inputmethod.InputMethodManager;
 import android.widget.EditText;
 import android.widget.Toast;

 import java.text.ParseException;
 import java.text.SimpleDateFormat;
 import java.util.Date;
 import java.util.Random;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.regex.PatternSyntaxException;

/**
* Created by Zohaib Hassan on 3/4/2016.
*/
 public class Helper {

private static ProgressDialog pd;

public static void saveData(String key, String value, Context context) {
    SharedPreferences sp = context.getApplicationContext()
            .getSharedPreferences("appData", 0);
    SharedPreferences.Editor editor;
    editor = sp.edit();
    editor.putString(key, value);
    editor.commit();
}

public static void deleteData(String key, Context context){
    SharedPreferences sp = context.getApplicationContext()
            .getSharedPreferences("appData", 0);
    SharedPreferences.Editor editor;
    editor = sp.edit();
    editor.remove(key);
    editor.commit();

}

public static String getSaveData(String key, Context context) {
    SharedPreferences sp = context.getApplicationContext()
            .getSharedPreferences("appData", 0);
    String data = sp.getString(key, "");
    return data;

}




public static long dateToUnix(String dt, String format) {
    SimpleDateFormat formatter;
    Date date = null;
    long unixtime;
    formatter = new SimpleDateFormat(format);
    try {
        date = formatter.parse(dt);
    } catch (Exception ex) {

        ex.printStackTrace();
    }
    unixtime = date.getTime();
    return unixtime;

}

public static String getData(long unixTime, String formate) {

    long unixSeconds = unixTime;
    Date date = new Date(unixSeconds);
    SimpleDateFormat sdf = new SimpleDateFormat(formate);
    String formattedDate = sdf.format(date);
    return formattedDate;
}

public static String getFormattedDate(String date, String currentFormat,
                                      String desiredFormat) {
    return getData(dateToUnix(date, currentFormat), desiredFormat);
}




public static double distance(double lat1, double lon1, double lat2,
                              double lon2, char unit) {
    double theta = lon1 - lon2;
    double dist = Math.sin(deg2rad(lat1)) * Math.sin(deg2rad(lat2))
            + Math.cos(deg2rad(lat1)) * Math.cos(deg2rad(lat2))
            * Math.cos(deg2rad(theta));
    dist = Math.acos(dist);
    dist = rad2deg(dist);
    dist = dist * 60 * 1.1515;
    if (unit == 'K') {
        dist = dist * 1.609344;
    } else if (unit == 'N') {
        dist = dist * 0.8684;
    }
    return (dist);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* :: This function converts decimal degrees to radians : */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
private static double deg2rad(double deg) {
    return (deg * Math.PI / 180.0);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* :: This function converts radians to decimal degrees : */
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
private static double rad2deg(double rad) {
    return (rad * 180.0 / Math.PI);
}

public static int getRendNumber() {
    Random r = new Random();
    return r.nextInt(360);
}

public static void hideKeyboard(Context context, EditText editText) {
    InputMethodManager imm = (InputMethodManager) context
            .getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(editText.getWindowToken(), 0);
}

public static void showLoder(Context context, String message) {
    pd = new ProgressDialog(context);

    pd.setCancelable(false);
    pd.setMessage(message);
    pd.show();
}

public static void showLoderImage(Context context, String message) {
    pd = new ProgressDialog(context);
    pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    pd.setCancelable(false);
    pd.setMessage(message);
    pd.show();
}

public static void dismissLoder() {
    pd.dismiss();
}

public static void toast(Context context, String text) {

    Toast.makeText(context, text, Toast.LENGTH_LONG).show();
}
/*
     public static Boolean connection(Context context) {
    ConnectionDetector connection = new ConnectionDetector(context);
    if (!connection.isConnectingToInternet()) {

        Helper.showAlert(context, "No Internet access...!");
        //Helper.toast(context, "No internet access..!");
        return false;
    } else
        return true;
}*/

public static void removeMapFrgment(FragmentActivity fa, int id) {

    android.support.v4.app.Fragment fragment;
    android.support.v4.app.FragmentManager fm;
    android.support.v4.app.FragmentTransaction ft;
    fm = fa.getSupportFragmentManager();
    fragment = fm.findFragmentById(id);
    ft = fa.getSupportFragmentManager().beginTransaction();
    ft.remove(fragment);
    ft.commit();

}

public static AlertDialog showDialog(Context context, String message) {
    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setMessage(message);

    builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {

        @Override
        public void onClick(DialogInterface dialog, int id) {
            // TODO Auto-generated method stub

        }
    });

    return builder.create();
}

public static void showAlert(Context context, String message) {
    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setTitle("Alert");
    builder.setMessage(message)
            .setPositiveButton("Ok", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    dialog.dismiss();
                }
            }).show();
}

public static boolean isURL(String url) {
    if (url == null)
        return false;

    boolean foundMatch = false;
    try {
        Pattern regex = Pattern
                .compile(
                        "\\b(?:(https?|ftp|file)://|www\\.)?[-A-Z0-9+&#/%?=~_|$!:,.;]*[A-Z0-9+&@#/%=~_|$]\\.[-A-Z0-9+&@#/%?=~_|$!:,.;]*[A-Z0-9+&@#/%=~_|$]",
                        Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
        Matcher regexMatcher = regex.matcher(url);
        foundMatch = regexMatcher.matches();
        return foundMatch;
    } catch (PatternSyntaxException ex) {
        // Syntax error in the regular expression
        return false;
    }
}

public static boolean atLeastOneChr(String string) {
    if (string == null)
        return false;

    boolean foundMatch = false;
    try {
        Pattern regex = Pattern.compile("[a-zA-Z0-9]",
                Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
        Matcher regexMatcher = regex.matcher(string);
        foundMatch = regexMatcher.matches();
        return foundMatch;
    } catch (PatternSyntaxException ex) {
        // Syntax error in the regular expression
        return false;
    }
}

public static boolean isValidEmail(String email, Context context) {
    String expression = "^[\\w\\.-]+@([\\w\\-]+\\.)+[A-Z]{2,4}$";
    CharSequence inputStr = email;
    Pattern pattern = Pattern.compile(expression, Pattern.CASE_INSENSITIVE);
    Matcher matcher = pattern.matcher(inputStr);
    if (matcher.matches()) {
        return true;
    } else {
        // Helper.toast(context, "Email is not valid..!");

        return false;
    }
}

public static boolean isValidUserName(String email, Context context) {
    String expression = "^[0-9a-zA-Z]+$";
    CharSequence inputStr = email;
    Pattern pattern = Pattern.compile(expression, Pattern.CASE_INSENSITIVE);
    Matcher matcher = pattern.matcher(inputStr);
    if (matcher.matches()) {
        return true;
    } else {
        Helper.toast(context, "Username is not valid..!");
        return false;
    }
}

public static boolean isValidDateSlash(String inDate) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd/mm/yyyy");
    dateFormat.setLenient(false);
    try {
        dateFormat.parse(inDate.trim());
    } catch (ParseException pe) {
        return false;
    }
    return true;
}

public static boolean isValidDateDash(String inDate) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd-mm-yyyy");
    dateFormat.setLenient(false);
    try {
        dateFormat.parse(inDate.trim());
    } catch (ParseException pe) {
        return false;
    }
    return true;
}

public static boolean isValidDateDot(String inDate) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd.mm.yyyy");
    dateFormat.setLenient(false);
    try {
        dateFormat.parse(inDate.trim());
    } catch (ParseException pe) {
        return false;
    }
    return true;
}

}
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.