Back to project page FloatCamera.
The source code is released under:
Apache License
If you think the Android project FloatCamera 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.kenai.camera; // w w w . j a v a 2s . c om import java.io.File; import android.os.Environment; public class CameraEnv{ public static File getOutputFile(){ return new File( Environment .getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM),"kenai"); } }