I am developing an app in android. This app create video and save in sdcard. this app also allow user to pick video from gallery and run. My problem is I want to limit the user to get only from those videos which were created using the app. For this purpose I want to show only those videos, create by app in gellry, when user move to gallery for pick the videos.
i am using the following code to show vidoe gallery.
Intent intnt = new Intent();
intnt.setType("video/*");
intnt.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intnt, "Select Video"),1);
This code show all videos in video gallery. But I don't know how to show only those video in gallery created using app.