这是MainActivity,我也有Service类正常工作。 我只需要暂停我的MediaPlayer并且不知道如何在我的活动中这样做。 当我调用stopService时它会完全停止,然后如何使用暂停?
public class MainActivity extends QuizActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.menu);
startService(new Intent(this, BackgroundSoundService.class));
}
public void stopClick(View v) {
stopService(new Intent(this, BackgroundSoundService.class));
}
public void playClick(View v) {
startService(new Intent(this, BackgroundSoundService.class));
}
@Override
protected void onResume() {
super.onResume();
}
}