특정 활동이 시작되면 서비스를 호출하고 싶습니다. 따라서 다음은 서비스 클래스입니다.
public class UpdaterServiceManager extends Service {
private final int UPDATE_INTERVAL = 60 * 1000;
private Timer timer = new Timer();
private static final int NOTIFICATION_EX = 1;
private NotificationManager notificationManager;
public UpdaterServiceManager() {}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
@Override
public void onCreate() {
// Code to execute when the service is first created
}
@Override
public void onDestroy() {
if (timer != null) {
timer.cancel();
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startid) {
notificationManager = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
int icon = android.R.drawable.stat_notify_sync;
CharSequence tickerText = "Hello";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
Context context = getApplicationContext();
CharSequence contentTitle = "My notification";
CharSequence contentText = "Hello World!";
Intent notificationIntent = new Intent(this, Main.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText,
contentIntent);
notificationManager.notify(NOTIFICATION_EX, notification);
Toast.makeText(this, "Started!", Toast.LENGTH_LONG);
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
// Check if there are updates here and notify if true
}
}, 0, UPDATE_INTERVAL);
return START_STICKY;
}
private void stopService() {
if (timer != null) timer.cancel();
}
}
그리고 내가 그것을 부르는 방법은 다음과 같습니다.
Intent serviceIntent = new Intent();
serviceIntent.setAction("cidadaos.cidade.data.UpdaterServiceManager");
startService(serviceIntent);
문제는 아무 일도 일어나지 않는다는 것입니다. 위의 코드 블록은 활동의 onCreate
. 이미 디버깅했으며 예외가 발생하지 않습니다.
어떤 생각?
<service android:name="your.package.name.here.ServiceClass" />
응용 프로그램 태그 내에서 사용하여 Android 매니페스트에 서비스를 등록했는지 확인하십시오 .
START_STICKY
. 서비스를 다시 시작하지만 onCreate 만 호출되고 타이머 var가 다시 초기화되지 않습니다. 당신은 놀 수있는START_REDELIVER_INTENT
이 문제를 해결하기 위해 알람 서비스 또는 API (21) 작업 스케줄러.