Android preferences for WINNERS!
This little tool generates wrappers for your SharedPreferences, so you can benefit from compile time verification and code completion in your IDE. You also get nice singletons for free.
Usage
1/ Add the dependencies to your project
buildscript { repositories { / *... * / jcenter() } dependencies { / *... * / classpath 'Com. Neenbedankt. Gradle. Plugins: android - apt: 1.4'}}/ *... * / apply plugin: 'com.neenbedankt.android-apt' / *... * / dependencies { / *... * / apt 'Org. Jraf: prefs - compiler: 1.0.1' compile 'Org. Jraf: prefs: 1.0.1' }
Prefs makes good use of the excellent android-apt plugin.
2/ Define your preferences
Use the @Prefs
annotation on any plain old Java object. All its (non static) fields will be considered a preference.
For instance:
@Prefs public class Main { / * * * User login. * / @Name("PREF_LOGIN") String login; / * * * User password. * / String password; @DefaultBoolean(false) Boolean isPremium; @Name("PREF_AGE") Integer age; }
Currently, the accepted types are:
- Boolean
- Float
- Integer
- Long
- String
- Set
Optionally, use @DefaultXxx
and @Name
annotations (the default default is null
, and the default name is the name of your field).
You can pass a file name and mode (as per Context.getSharedPreference()) like this:
@Prefs(fileName = "settings", fileMode = Context.MODE_PRIVATE)
If you don’t, PreferenceManager.getDefaultSharedPreferences(Context)
will be used.
3/ Be a winner!
A class named Prefs
will be generated in the same package (at compile time). Use it like this:
MainPrefs mainPrefs = MainPrefs.get(this); // Put a single value (apply() is automatically called) mainPrefs.putAge(42); // Put several values in one transaction mainPrefs.edit().putLogin("john").putPassword("p4Ssw0Rd").apply(); // Check if a value is set if (mainPrefs.containsLogin()) doSomething(); // Remove a value mainPrefs.removeAge(); // Or (this has the same effect) mainPrefs.putAge(null); // Clear all values! mainPrefs.clear();
License
Copyright (C) 2015 Benoit 'BoD' Lubek ([email protected])
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.
Copy the code
Just to be absolutely clear, this license applies to this program itself, not to the source it will generate!