在录制视频时,如何在SurfaceView的这两种意图之间切换,并创建在开始/暂停期间在youtube中看到的那种图形效果?

-> stopService(new Intent(getApplicationContext(),ServiceRecording.class));
-> startService(新的Intent(getApplicationContext(),ServiceRecording.class);

public void onClick(View v)
            {

            }

最佳答案

以下原因行不通吗?

if (serviceRunning) {
  serviceRunning = false;
  stopService(...);
} else {
  serviceRunning = true;
  startService(...);
}

关于java - 如何使用onClick在startService()和stopService()之间切换?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5791848/

10-09 07:05