Lines Matching refs:Media
36 import android.media.audiofx.AudioEffect;
37 import android.media.AudioManager;
38 import android.media.AudioManager.OnAudioFocusChangeListener;
39 import android.media.MediaMetadataRetriever;
40 import android.media.MediaPlayer;
41 import android.media.MediaPlayer.OnCompletionListener;
42 import android.media.RemoteControlClient;
43 import android.media.RemoteControlClient.MetadataEditor;
130 MediaStore.Audio.Media.ARTIST, MediaStore.Audio.Media.ALBUM,
131 MediaStore.Audio.Media.TITLE, MediaStore.Audio.Media.DATA,
132 MediaStore.Audio.Media.MIME_TYPE, MediaStore.Audio.Media.ALBUM_ID,
133 MediaStore.Audio.Media.ARTIST_ID,
134 MediaStore.Audio.Media.IS_PODCAST, // index must match PODCASTCOLIDX below
135 MediaStore.Audio.Media.BOOKMARK // index must match BOOKMARKCOLIDX below
523 // we might not be able to query the media provider right away.
527 Cursor crsr = MusicUtils.query(this, MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
532 crsr = getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
723 * @param storagePath path to mount point for the removed media
734 * The intent will call closeExternalStorageFiles() if the external media
1005 MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, mCursorCols, "_id=" + id, null, null);
1027 && open(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI + "/"
1081 mPlayer.setNextDataSource(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI + "/" + id);
1104 if (path.startsWith("content://media/")) {
1109 uri = MediaStore.Audio.Media.getContentUriForPath(path);
1110 where = MediaStore.Audio.Media.DATA + "=?";
1449 values.put(MediaStore.Audio.Media.BOOKMARK, pos);
1451 MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, mCursor.getLong(IDCOLIDX));
1538 c = res.query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
1539 new String[] {MediaStore.Audio.Media._ID},
1540 MediaStore.Audio.Media.IS_MUSIC + "=1", null, null);
1738 return mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ARTIST));
1747 return mCursor.getLong(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ARTIST_ID));
1756 return mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM));
1765 return mCursor.getLong(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM_ID));
1774 return mCursor.getString(mCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.TITLE));
1853 * other media files.
1979 // require the media service, so it's OK to do this now, while the