Back to project page wiki-contacts-android.
The source code is released under:
Apache License
If you think the Android project wiki-contacts-android 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.kahkong.wikicontacts.service; /*w ww . j av a 2 s. c o m*/ import android.content.Context; /** * * @author Poh Kah Kong * */ public interface PreferencesService { public void setSharedPreferences(Context context); public boolean getCallerId(); public void setCallerId(boolean value); public boolean getInfoHidden(); public void setInfoHidden(boolean value); public boolean getBoolean(String key); public void setBoolean(String key, boolean value); }