PrefData

General

Category
Free
Tag
APT
License
Apache License, Version 2.0
Registered
Jun 15, 2017
Favorites
1
Link
https://github.com/xelevra/prefdata
See also
Auto-Parcel
Auto-Dagger2
Akatsuki
GsonValue
Featured

Additional

Language
Java
Version
N/A
Created
Jun 8, 2017
Updated
Sep 7, 2021 (Retired)
Owner
Nickolay (xelevra)
Contributors
Mikhail Spitsin (programmerr47)
Nickolay (xelevra)
2
Activity
Badge
Generate
Download
Source code

Pref Data – the Android SharedPreferences wrapper

HelloWorld

  1. Create a class and annotate it with @PrefData
@PrefData
public abstract class UserSettings {
    // the fields must be protected or package private
    int age;
    String name;
}
  1. Create an instance of the generated class (it will be prefixed by "Prefs")
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
PrefUserSettings userSettings = new PrefUserSettings(prefs);

Download

annotationProcessor 'org.xelevra.libs:prefdata-processor:2.2'
provided 'org.xelevra.libs:prefdata-annotations:2.2'

Usage

Get and Set
int age = userSettings.getAge();
userSettings.setAge(18);
Chains
userSettings.setAge(18).setName("Stephen");
Default value

Initial value of your fields will be default values.

int age = 18;
Clear

For clearing the preferences use clear()

Support remove

Mark the class with @GenerateRemove and remove methods will be generated

userSettings.removeAge();
Prefix

Mark your field with @Prefixed annotation

@Prefixed
int childAge;

Then use

userSettings.setChildAge("James", 13);
userSettings.setChildAge("Anna", 15);
Buffered edition
userSettings.edit().setAge(18).setName("Stephen").apply();

Note Until you not called edit() all values will be saved immediatly. When you call edit() all next settings will be saved after calling apply() or commit()

Example:

userParams.edit().setAge(32).setName("Bob").apply();
Custom keywords

Mark the field with @Keyword for custom SharedPreferences key. For example it might help you to migrate to the library from manual preferences setting.

@Keyword("NAME");
String name;
Custom methods for changing settings

If you have to set some settings from a model or you have to limit actions under the fields you can encapsulate getter or setter for a field and write a custom method:

@Encapsulate
String name;
@Encapsulate(getter = false) // generate only getter
String surname;

@Use({"name", "surname"})
public void setNameAndSurname(String ns){
    name = ns.substring(0, ns.indexOf(" "));
    surname = ns.substring(ns.indexOf(" ") + 1, ns.length());
}

@Use("name")
public String getCapitalisedName(){
    return name.toUpperCase();
}
Limit the range of allowed values

For the limiting possible values for field, use @Belongs annotation. Example:

@Belongs("animals", "plants", "fungi", "chromista", "protist")
String eukaryoteKingdom

@Belongs("-1", "0.43", "54.444f")
float randomNumber

The IllegalArgumentException will be thrown if user set a value not from the list. Also you might turn of the checking if set validation = false.

Supported types

Already supported only primitive types and String

Advanced

The library covers another important task you might need: set up some settings to the test builds without rebuilding. Usually programmers includes a special screen with the list of settings, and a tester should do some tricky actions to open it. The library let you take your settings out and manage them using special application provided with it. For the settings with @Belongs the list of available values in the app represented as a selector.

  1. Add dependency
compile 'org.xelevra.libs:prefdata-provider:2.2'
  1. Mark the class or aspecial fields with @Exportable
  2. Extend the abstract class PreferencesContentProvider
public class UserSettingsProvider extends PreferencesContentProvider {
    @Override
    protected Exporter getExporter() {
        return new PrefUserSettings(getContext().getSharedPreferences("main", Context.MODE_PRIVATE));
    }
}
  1. Register it in your manifest
<provider
            android:name=".UserSettingsProvider"
            android:authorities="org.xelevra.prefdata.com.example.test"
            android:exported="true"/>

Important In authorities you must write exactly the line started with "org.xelevra.prefdata." and end with your package name. Otherwice the browser app won't find your provider.