Android Open Source - pic-taker User Picture






From Project

Back to project page pic-taker.

License

The source code is released under:

MIT License

If you think the Android project pic-taker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.sambuo.pictaker;
/*  w  ww  .j  a va2  s.c  om*/
import com.parse.ParseClassName;
import com.parse.ParseFile;
import com.parse.ParseObject;

@ParseClassName("UserPicture")
public class UserPicture extends ParseObject {
  
  public UserPicture() {
    
  }
  
  public ParseFile getPhotoFile() {
    return getParseFile("photo");
  }
  
  public void setPhotoFile(ParseFile file) {
    put("photo", file);
  }
}




Java Source Code List

com.sambuo.pictaker.CameraFragment.java
com.sambuo.pictaker.CameraPreview.java
com.sambuo.pictaker.HomeFragment.java
com.sambuo.pictaker.ImageAdapter.java
com.sambuo.pictaker.MainActivity.java
com.sambuo.pictaker.UserPicture.java
com.sambuo.pictaker.ViewPictureActivity.java