我创建了一个简单的应用程序。在我的主要活动课程中,我使用它在单击按钮时播放声音
MediaPlayer buttonSound = MediaPlayer.create(this, R.drawable.button_sound);
public void onClick(View arg0){
buttonSound.start();
}
在我的主要活动课程中,我有一个启动背景音乐的服务
Intent svc=new Intent(this, BackgroundSoundService.class);
startService(svc);
问题是,如果我不启动服务startService(svc);
,按钮声音就不会播放!为什么?它们是两种不同的东西!