Back to project page FxCameraApp.
The source code is released under:
MIT License
If you think the Android project FxCameraApp 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.af.experiments.FxCameraApp.camera; // www . j a va 2s . c o m import android.content.Context; import android.graphics.SurfaceTexture; import java.io.IOException; public class CameraHelperHonycomb extends CameraHelperGingerbread { public CameraHelperHonycomb(final Context context) { super(context); } @Override public void setPreviewTexture(final Object surfaceTexture) throws IOException { getCamera().setPreviewTexture((SurfaceTexture) surfaceTexture); } }