Set Notification Sound from Assets folder

前端 未结 6 669
北海茫月
北海茫月 2021-02-05 05:46

I am attaching the sound files in the assets folder for play sound in the notification but I am not able to play sound from the assets folder.

I have setting page from w

6条回答
  •  孤独总比滥情好
    2021-02-05 05:58

    put ur mp3 file in res->raw folder, try to fetch sound file from raw folder.

    Uri path = Uri.parse("android.resource://com.androidbook.samplevideo/" + R.raw.myvideo);
    

    OR

    Uri path = Uri.parse("android.resource://com.androidbook.samplevideo/raw/myvideo");
    

提交回复
热议问题