我创建了一个播放背景音乐的类
public class Background_music extends Service {
MediaPlayer player;
public IBinder onBind(Intent arg0) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
player = MediaPlayer.create(this, R.raw.background_music);
player.setLooping(true);
player.start();
}
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
}
public void onStop(){
player.stop();
player.release();
}
public void onPause() {
player.stop();
}
public void onResume(){
player.start();
}
@Override
public void onDestroy() {
player.stop();
player.release();
}
}
在我的主要课程中,我以这种方式调用服务
Intent musica_backGround=new Intent(this, Background_music.class);
startService(musica_backGround);
但是音乐没有响起。我认为问题是我无法启动服务,因为即使我尝试做其他的东西 Background_music 类,什么也没有发生
在 LogCat 上,我收到此消息showStatusIcon on inactive InputConnection