特定のアクティビティが開始されたときにサービスを呼び出したい。したがって、ここにServiceクラスがあります。
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
の終わりに呼び出されます。私はすでにデバッグしており、例外はスローされません。
何か案が?
おそらく、マニフェストにサービスがないか、アクションに一致する<intent-filter>
がありません。 LogCatを(adb logcat
、DDMS、またはEclipseのDDMSパースペクティブ経由で)調べると、役立つ可能性のある警告が表示されるはずです。
多くの場合、次の方法でサービスを開始する必要があります。
startService(new Intent(this, UpdaterServiceManager.class));
startService(new Intent(this, MyService.class));
この行を書くだけでは十分ではありませんでした。サービスはまだ機能しませんでした。マニフェストでサービスを登録した後にのみすべてが機能していました
<application
Android:icon="@drawable/ic_launcher"
Android:label="@string/app_name" >
...
<service
Android:name=".MyService"
Android:label="My Service" >
</service>
</application>
startserviceのJavaコード:
Activityからサービスを開始します:
startService(new Intent(MyActivity.this, MyService.class));
Fragmentからサービスを開始します:
getActivity().startService(new Intent(getActivity(), MyService.class));
MyService.Java:
import Android.app.Service;
import Android.content.Intent;
import Android.os.Handler;
import Android.os.IBinder;
import Android.util.Log;
public class MyService extends Service {
private static String TAG = "MyService";
private Handler handler;
private Runnable runnable;
private final int runTime = 5000;
@Override
public void onCreate() {
super.onCreate();
Log.i(TAG, "onCreate");
handler = new Handler();
runnable = new Runnable() {
@Override
public void run() {
handler.postDelayed(runnable, runTime);
}
};
handler.post(runnable);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onDestroy() {
if (handler != null) {
handler.removeCallbacks(runnable);
}
super.onDestroy();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_STICKY;
}
@SuppressWarnings("deprecation")
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
Log.i(TAG, "onStart");
}
}
このサービスをプロジェクトのマニフェストファイルに定義します。
マニフェストファイルに以下のタグを追加します。
<service Android:enabled="true" Android:name="com.my.packagename.MyService" />
完了
もっとダイナミックにしたい
Class<?> serviceMonitor = MyService.class;
private void startMyService() { context.startService(new Intent(context, serviceMonitor)); }
private void stopMyService() { context.stopService(new Intent(context, serviceMonitor)); }
マニフェストを忘れないでください
<service Android:enabled="true" Android:name=".MyService.class" />