I am using following code for video recording using camera
code on record button click:-
intent = new Intent(android.provider.MediaStore.ACTION_VI
You should add the permission android.permission.READ_EXTERNAL_STORAGE to your manifest file by adding the following line to it :
android.permission.READ_EXTERNAL_STORAGE
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />