I am programming for android and I have get all audios details on the SDcard.I have this question:
how i write Like statement for create an cursor on My special Folder? I dont want cursor access to all external.only on my folder.I want limit cursoring.but how?with which LIKE Statemet?
Cursor audioCursor = ((Activity)context ). managedQuery(audiosUri,star,MediaStore.Audio.Media.DATA + " LIKE ?", new String[] { folderpath }, null);
this is how I do it. when a user long clicks, a query is executed against the music database. _DATA holds the fully qualified path for each song so the query will return all the files in that folder. path is path = new ArrayList(); which was built up by path.add(file.getPath()); You will find many examples on how to display folder and files.