am b1e54abd: am 591ab090: am 3ba2bfa7: Merge "Expand ringtone titles to support OGG and FLAC." into mnc-dev
* commit 'b1e54abdbe3257999e017b972606996417a960a8': Expand ringtone titles to support OGG and FLAC.
This commit is contained in:
@@ -52,7 +52,8 @@ public class Ringtone {
|
||||
MediaStore.Audio.Media.TITLE
|
||||
};
|
||||
/** Selection that limits query results to just audio files */
|
||||
private static final String MEDIA_SELECTION = MediaColumns.MIME_TYPE + " LIKE 'audio/%'";
|
||||
private static final String MEDIA_SELECTION = MediaColumns.MIME_TYPE + " LIKE 'audio/%' OR "
|
||||
+ MediaColumns.MIME_TYPE + " IN ('application/ogg', 'application/x-flac')";
|
||||
|
||||
// keep references on active Ringtones until stopped or completion listener called.
|
||||
private static final ArrayList<Ringtone> sActiveRingtones = new ArrayList<Ringtone>();
|
||||
|
||||
Reference in New Issue
Block a user