When I start to record video and stop a pause.Sometimes show me cropped image preview.How to avoid this behavior.I'm using intent for calling camera.Thanks.
Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
startActivityForResult(intent, VIDEO_CAPTURE);
My activity in manifest
<activity
android:name="com.mti.videodialy.activity.CreateVideoNoteActivity"
android:theme="@style/VideoDailyActionBar"
android:configChanges="orientation|screenSize"></activity>