How to capture video using intent in Galaxy Tab?

I have an intent that calls the video capture activity:

Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
            intent.putExtra(MediaStore.EXTRA_OUTPUT,  Uri.fromFile(videoFile));
            intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
            startActivityForResult(intent,CAPTURE_VIDEO_ACTIVITY_REQUEST_CODE);

It works fine on my SE X8, but on Galaxy Tab the video capture activity never quits. After I stop recording, there is no button to quit the video capture. Is there any extra parameter I need to set?

5
задан ezequielc 22 March 2011 в 17:37
поделиться