Android:
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
ในปัจจุบันในระดับบริการได้อย่างไร