處理AUDIO_BECOMING_NOISY意圖
一些精心編寫的應用程式在發生音頻吵雜的事件(通過外部擴音器輸出)時,能夠自動的終止播放。例如,在使用者正在使用耳麥聽音樂時,而耳麥偶然與裝置的串連斷開,就可能發生這種情況。但是這種行為不會自動發生。如果你沒有實現這個功能,音頻就可能通過外部擴音器來輸出,這可能是使用者不想要的。
通過處理ACTION_AUDIO_BECOMING_NOISY意圖,你能夠確保在發生這種情況時,終止音樂的播放。通過把下列內容添加到你應用清單中,就能夠註冊一個接受器:
<receiver android:name=".MusicIntentReceiver">
<intent-filter>
<action android:name="android.media.AUDIO_BECOMING_NOISY" />
</intent-filter>
</receiver>
這個註冊的MusicIntenReceiver類做為該Intent的廣播接收器。然後應該實現這個類:
public class MusicIntentReceiver implements android.content.BroadcastReceiver {
@Override
public void onReceive(Context ctx, Intent intent) {
if (intent.getAction().equals(
android.media.AudioManager.ACTION_AUDIO_BECOMING_NOISY)) {
// signal your service to stop playback
// (via an Intent, for instance)
}
}
}
從內容解析器(Content Resolver)中接收媒體資料
在媒體播放應用程式中,可以使用另外一種有用的功能來擷取使用者裝置上的音樂。通過查詢ContentResolver來擷取外部媒體:
ContentResolver contentResolver = getContentResolver();
Uri uri = android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
Cursor cursor = contentResolver.query(uri, null, null, null, null);
if (cursor == null) {
// query failed, handle error.
} else if (!cursor.moveToFirst()) {
// no media on the device
} else {
int titleColumn = cursor.getColumnIndex(android.provider.MediaStore.Audio.Media.TITLE);
int idColumn = cursor.getColumnIndex(android.provider.MediaStore.Audio.Media._ID);
do {
long thisId = cursor.getLong(idColumn);
String thisTitle = cursor.getString(titleColumn);
// ...process entry...
} while (cursor.moveToNext());
}
通過以下方式來使用這個MediaPlayer對象:
long id =/* retrieve it from somewhere */;
Uri contentUri =ContentUris.withAppendedId(
android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, id);
mMediaPlayer =newMediaPlayer();
mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mMediaPlayer.setDataSource(getApplicationContext(), contentUri);
// ...prepare and start...