Android:
public class LocationService extends Service {
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
startActivity(new Intent(this, activity.class));
}
}
Tôi đã ra mắt dịch vụ này từ Activity
Trong trường Activity
hợp điều kiện thỏa mãn bắt đầu
startService(new Intent(WozzonActivity.this, LocationService.class));
từ LocationService
đề cập ở trên của tôi không thể khởi chạy Activity
, làm thế nào tôi có thể có được bối cảnh chạy hiện tại Activity
trong lớp dịch vụ?