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; /*from w ww.j a v a 2s. c o m*/ import android.content.Context; import android.graphics.Bitmap; /** * * @author Poh Kah Kong * */ public interface ResourceService { public void setContext(Context context); public Bitmap getNewImage(); public Bitmap getSpamImage(); public String getString(int id); }