기계적 인조 인간:
public class LocationService extends Service {
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
startActivity(new Intent(this, activity.class));
}
}
이 서비스를 시작했습니다 Activity
에서 Activity
조건을 만족 시작하는 경우
startService(new Intent(WozzonActivity.this, LocationService.class));
내가에서 LocationService
출시가 없습니다 위에서 언급 Activity
, 어떻게 현재 실행중인 컨텍스트 얻을 수있는 Activity
서비스 클래스를?