Android媒體播放—Media playback(五)

來源:互聯網
上載者:User

處理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...

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.