Back to project page tpblogr.
The source code is released under:
MIT License
If you think the Android project tpblogr 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 blogr.vpm.fr.blogr.apis.flickr; //from w w w . j a va2 s . co m import com.googlecode.flickrjandroid.photos.PhotoList; /** * Created by vincent on 08/10/14. * <p/> * All content provided by Flickr */ public interface FlickrProvider { /** * Retrieves the n first photos of user identified by its username * * @param username the username to identify the user * @param count the number of pictures to display * @return the List of photos */ PhotoList getUserPhotos(String username, int count); }