我是靠谱客的博主 执着棒球,这篇文章主要介绍Service后台服务控制音乐的播放暂停和停止,播放完自动播放下一曲,现在分享给大家,希望可以做个参考。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
//添加获得sd卡的状态权限,和读取sd卡的权限 <uses- permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> <uses- permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> // MainActivity中用三个按钮,播放,暂停,停止,发送服务到后台服务来控制 public class MainActivity extends Activity implements OnClickListener { private Button puase; private Button stop; private Button start; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); start = (Button) findViewById(R.id.start); puase = (Button) findViewById(R.id.puase); stop = (Button) findViewById(R.id.stop); start.setOnClickListener(this); puase.setOnClickListener(this); stop.setOnClickListener(this); } @Override public void onClick(View v) { Intent intent = new Intent(MainActivity.this, Service1.class); switch (v.getId()) { case R.id.start: intent.putExtra("key", 1); break; case R.id.puase: intent.putExtra("key", 2); break; case R.id.stop: intent.putExtra("key", 3); break; default: break; } startService(intent); } } //自定义类,继承Service服务 public class Service1 extends Service { private MediaPlayer mediaplayer; private ArrayList<Music> list; private String path = ""; private int index = 0; @Override public IBinder onBind(Intent intent) { return null; } @Override public void onCreate() { super.onCreate(); mediaplayer = new MediaPlayer(); list = new ArrayList<Music>(); //读取SD卡 if (Environment.getExternalStorageState().equals( Environment.MEDIA_MOUNTED)) { File file = Environment.getExternalStorageDirectory(); path = file.getAbsolutePath(); } list.add(new Music("男人歌", path + "/nanrenge.mp3")); list.add(new Music("夜色", path + "/yese.mp3")); list.add(new Music("漂洋过海来看你", path + "/piaoyang.mp3")); list.add(new Music("兄弟无数", path + "/xiongdiwushu.mp3")); //播放完成后自定播放下一曲 mediaplayer.setOnCompletionListener(new OnCompletionListener() { @Override public void onCompletion(MediaPlayer mp) { index++; play(); } }); } //用这个方法控制MainActivity发来的服务,控制音乐 @Override public int onStartCommand(Intent intent, int flags, int startId) { int m = intent.getIntExtra("key", 0); switch (m) { case 1: play(); break; case 2:// 暂停 if (mediaplayer != null && mediaplayer.isPlaying()) mediaplayer.pause(); break; case 3:// 停止 if (mediaplayer != null) { mediaplayer.stop(); stopService(intent); } break; default: break; } return super.onStartCommand(intent, flags, startId); } //播放音乐 private void play() { mediaplayer.reset(); try { mediaplayer.setDataSource(list.get(index).getPath()); mediaplayer.prepare(); } catch (Exception e) { e.printStackTrace(); } mediaplayer.start(); } @Override public void onDestroy() { super.onDestroy(); if (mediaplayer != null) { mediaplayer.release(); mediaplayer = null; } } }

最后

以上就是执着棒球最近收集整理的关于Service后台服务控制音乐的播放暂停和停止,播放完自动播放下一曲的全部内容,更多相关Service后台服务控制音乐内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部