I am having an issue with the camera class on android 2.2 tablet. The problem is that when activating the camera preview, I see static as seen below:
http://i81.photobucket.com/albums/j237/bwyyoung/Develop/IMG_0119.jpg
The static is seen below, even when I operate the camera class on full screen.
My code for the camera is below:
public class OoohaPrototypeActivity extends Activity {
/** Called when the activity is first created. */
private CameraPreview mPreview;
Camera mCamera;
int numberOfCameras;
int cameraCurrentlyLocked;
// The first rear facing camera
int defaultCameraId;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mPreview = new CameraPreview(this);
setContentView(mPreview);
}
I face the same issue even after restarting the tablet. The tablet's normal camera app preview works fine though. The CameraPreview class is the same one seen in http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/CameraPreview.html