Easy way to put and get data and Object for the shared preferences in Android.
Add below line in app build.gradle
dependencies {
compile 'com.iamhabib:easy-preference:1.0.1'
}
You can use default preference name by
EasyPreference.with(this)
Use your own preference name
EasyPreference.with(this, "YourPrefName")
You can add boolean, int, String, long, Set
EasyPreference.with(this)
.addBoolean("KEY", booleanValue)
.addString("KEY", stringValue)
.addInt("KEY", intValue)
.addObject("KEY", objectValue)
.save();
boolean value=EasyPreference.with(this)
.getBoolean("KEY", defaultValue);
MyObject object=EasyPreference.with(this)
.getObject("KEY", MyObject.class);
EasyPreference.with(this)
.remove("KEY")
.save();;
EasyPreference.with(this)
.clearAll()
.save();
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);
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.