xml
···
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="${relativePackage}.${activityClass}" >
<Button
android:id="@+id/bt_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="播放" />
<Button
android:id="@+id/bt_2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="播放/继续播放MediaPlayer" />
<Button
android:id="@+id/bt_3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="暂停MediaPlayer" />
<Button
android:id="@+id/bt_4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="停止MediaPlayer" />
</LinearLayout>
···
SoundPoll: (默认)res/ raw
MainActivity************
···
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//1.创建soundPool对象
soundPool = new SoundPool(5, AudioManager.STREAM_SYSTEM,
0);
hashMap = new HashMap<String, Integer>();
arrow_id = soundPool.load(MainActivity.this, R.raw.arrow, 1);
bomb_id = soundPool.load(MainActivity.this, R.raw.bomb, 1);
shot_id = soundPool.load(MainActivity.this, R.raw.shot, 1);
hashMap.put("射击", arrow_id);
hashMap.put("炸弹", bomb_id);
hashMap.put("开枪", shot_id);
//3. 播放
findViewById(R.id.bt_1).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// 播放音效 1. id 2.左声道 3.右声道音量 最大声音为1
//4.优先级 :默认1 5.播放次数: 0代表一次 -1 无限循环 6. 播放比率吧(播放速度) 0.5-2之间 1为正常比率
// soundPool.play(arrow_id, 1, 1,1, 0, 1);
// soundPool.play(bomb_id, 1, 1,1, 0, 1);
soundPool.play(hashMap.get("射击"), 1, 1,1, 0, 1);
}
});
···
//MediaPlayer
···
//播放/继续播放MediaPlayer
findViewById(R.id.bt_2).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (play==false) {//没有播放 创建对象播放
//1.创建 MediaPlayer对象
mediaPlayer = new MediaPlayer();
//2.恢复初始化设置
mediaPlayer.reset();
//3.设置音乐资源
try {
mediaPlayer.setDataSource("/storage/emulated/0/刘惜君 - 菩提偈.mp3");
//4.准备
mediaPlayer.prepare();
} catch (Exception e) {
e.printStackTrace();
}
//5.播放
mediaPlayer.start();
play=true;
}else{
//6.继续播放
mediaPlayer.start();
}
}
});
//暂停
findViewById(R.id.bt_3).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (mediaPlayer!=null && play==true) {
mediaPlayer.pause();
}
}
});
//停止
findViewById(R.id.bt_4).setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (mediaPlayer!=null && play==true) {
mediaPlayer.stop();
play=false;
}
}
});
// //音乐播放完走的回调
// mediaPlayer.setOnCompletionListener(new OnCompletionListener() {
//
// @Override
// public void onCompletion(MediaPlayer mp) {
// Log.e("TAG", "onCompletion---");
//
//
// }
// });
// //当发生错误的时候回调
// mediaPlayer.setOnErrorListener(new OnErrorListener() {
//
// @Override
// public boolean onError(MediaPlayer mp, int what, int extra) {
// Log.e("TAG", "setOnErrorListener---");
// return false;
// }
// });
}
//页面不可见 //音乐停止
@Override
protected void onStop() {
super.onStop();
if (mediaPlayer!=null && play==true) {
mediaPlayer.stop();
play=false;
}
}
@Override
protected void onDestroy() {
super.onDestroy();
if (mediaPlayer!=null && play==true) {
mediaPlayer.stop();
mediaPlayer.release();//结束
}
}
···