Back to project page blink.
The source code is released under:
Apache License
If you think the Android project blink listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nashlincoln.blink.app; /* www . j a v a 2s . co m*/ /** * Created by nash on 11/1/14. */ public class PreferenceUtils { public static String getString(int prefKeyId) { final String prefKey = BlinkApp.getApp().getString(prefKeyId); return BlinkApp.getPreferences().getString(prefKey, null); } }