如何在不使用stopService()方法的情况下暂停服务?

时间:2014-09-04 16:23:58

标签: android service

这是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();
        }
    }

0 个答案:

没有答案