2017-04-08 78 views

回答

0
<intent-filter> 
     <action android:name="android.intent.action.VIEW" /> 
     <category android:name="android.intent.category.DEFAULT" /> 
     <category android:name="android.intent.category.BROWSABLE"/> 
     <data android:mimeType="audio/*"/> 
    </intent-filter> 

使用此代碼到您想要在menifests文件中播放音樂的活動中。 更多參考Set my app as default music player in android programatically

+0

感謝您的回覆。有效。你能告訴我如何從音樂播放器列表中選擇我的音樂播放器應用後播放歌曲嗎?現在它只是打開我的音樂播放器的播放活動,但不是實際播放歌曲。 – gagan08

+0

你將得到你想要通過這個鏈接播放的文件的路徑http://stackoverflow.com/questions/15768379/register-as-music-player –

相關問題