android soundpool 播放音樂

來源:互聯網
上載者:User
 1 @Override
2 public void onCreate(Bundle savedInstanceState) {
3 super.onCreate(savedInstanceState);
4 setContentView(R.layout.main);
5
6 // 建立對象
7 // 第一個參數指定音頻池的最大音頻流數目為10
8 // 第三個參數,聲音品質為5
9 spool = new SoundPool(1, AudioManager.STREAM_SYSTEM, 10);
10
11 // 從資源或者檔案截入音頻流
12 hit = spool.load(this, R.raw.sound, 0);
13
14 Button btn = (Button) findViewById(R.id.Button01);
15 btn.setOnClickListener(new OnClickListener() {
16
17 @Override
18 public void onClick(View v) {
19 // TODO Auto-generated method stub
20
21 //播放音頻,可以對左右音量分別設定,可以設定優先權,迴圈次數以及速率
22 //速率最高2,最低0.5,正常為1
23 spool.play(hit, 2, 1, 0, 0, (float)1.4);
24
25 //spool.play(soundID, leftVolume, rightVolume, priority, loop, rate)
26 }
27 });
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.