码迷,mamicode.com
首页 > 其他好文 > 详细

SoundPool在使用

时间:2017-08-17 00:31:55      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:prot   manage   context   str   text   cat   listener   creat   bsp   

Button playButton;
 SoundPool sp;
 int soundID_1,soundID_2;
 int streamID_1,streamID_2;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  
  sp=new SoundPool(10, AudioManager.STREAM_MUSIC,0);
  soundID_1=sp.load(getApplicationContext(), R.raw.lingsheng, 1);
  soundID_2=sp.load(getApplicationContext(), R.raw.moon, 1);
  
  playButton=(Button)findViewById(R.id.play);
  playButton.setOnClickListener(new OnClickListener() {
   
   @Override
   public void onClick(View v) {
    streamID_1=sp.play(soundID_1, 0.8f, 0.8f,1, -1, 1.0f);
    streamID_2=sp.play(soundID_2, 0.8f, 0.8f,1, -1, 1.0f);
   }
  });
 }

SoundPool在使用

标签:prot   manage   context   str   text   cat   listener   creat   bsp   

原文地址:http://www.cnblogs.com/liunx1109/p/7376604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!