Easy Preference

Additional

Language
Java
Version
N/A
Created
Nov 1, 2016
Updated
Aug 1, 2019 (Retired)
Owner
Habibur Rahman (iamhabib)
Contributor
Habibur Rahman (iamhabib)
1
Activity
Badge
Generate
Download
Source code

Easy Preference


Easy way to put and get data and Object for the shared preferences in Android.

##Usage

Add below line in app build.gradle

dependencies {
 compile 'com.iamhabib:easy-preference:1.0.1'
}

##Code snippets

Preference initialize option

You can use default preference name by

EasyPreference.with(this)
 

Use your own preference name

EasyPreference.with(this, "YourPrefName")
 

Adding Value

You can add boolean, int, String, long, Set, float and another is data object.

EasyPreference.with(this)
                .addBoolean("KEY", booleanValue)
                .addString("KEY", stringValue)
                .addInt("KEY", intValue)
                .addObject("KEY", objectValue)
                .save();

Geting Value

boolean value=EasyPreference.with(this)
                       .getBoolean("KEY", defaultValue);

Geting Data Object

MyObject object=EasyPreference.with(this)
                        .getObject("KEY", MyObject.class);

Removing Value

EasyPreference.with(this)
                .remove("KEY")
  .save();;

Clear All Value

EasyPreference.with(this)
                .clearAll()
  .save();

N.B

If you use your own preference name by:

EasyPreference.with(this, "YourPrefName")
 

You need to add your preference name in every request like this:

EasyPreference.with(this, "YourPrefName")
                .addBoolean("KEY", booleanValue)
                .addString("KEY", stringValue)
                .addInt("KEY", intValue)
                .addObject("KEY", objectValue)
                .save();
boolean value=EasyPreference.with(this, "YourPrefName")
                       .getBoolean("KEY", defaultValue);

##License

Copyright 2016 Habibur Rahman

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.