I have some audio 3gp file
and video 3gp file
.I need only video 3gp file but my query returning me both audio and video file.My Api level is
8
Here is my query
String[] data = { MediaStore.Video.Media.DATA };
Cursor vid_cursor=this.managedQuery(MediaStore.Video.Media.EXTERNAL_CONTENT_URI,data, null, null, null);
I can filter it by checking the height, only video will return height as it is shown here but I don't want to calculate height everytime.