Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
app
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Easy use of Android SharedPreference

Step 1. Add the JitPack repository to your build file

Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
        implementation 'com.github.farsroidx:PreferenceHelper:1.0.2'
}

/////////////////////////////////////

Sample SharedPreferenceUtils Class:

    SPUtils utils = SPUtils.getInstance(this);

    // Write To Preference
    utils.writeString  ("key" , "text");
    utils.writeBoolean ("key" , true);
    utils.writeFloat   ("key" , 1.85F);
    utils.writeInteger ("key" , 85);
    utils.writeLong    ("key" , 85L);

    // Read From Preference
    String  s  = utils.readString  ("key" , "alternative" );
    boolean b  = utils.readBoolean ("key" , false);
    float   f  = utils.readFloat   ("key" , 1.02F);
    int     i  = utils.readInteger ("key" , 0);
    long    l  = utils.readLong    ("key" , 85L);

    utils.remove("key");
    utils.clearAll();
You can’t perform that action at this time.