AudioTrack Android playing sounds from raw folder

前端 未结 2 1783
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-18 04:23

Is it possible to play wav files with AudioTrack from the resources folder raw? It tried many ways to reference the raw files in my Android project, but I got a

2条回答
  •  醉梦人生
    2020-12-18 04:48

    Everything is fine with your code, You just need to change

    while((i = inputStream.read()) != -1) 
    

    to

    while((i = inputStream.read(buffer)) != -1)
    

提交回复
热议问题