0
我有一個活動「PSActivity」和一個IntentServive「StalkService」。我開始服務,但服務從不執行,至少根據調試器。下面的代碼開始內部PSActivity的服務,我相信這是得到執行......開始一個IntentService
public void cbRealTime_Clicked(View v) {
//start the StalkService
if (cbRealTime.isChecked()) {
Intent i = new Intent(this, StalkService.class);
i.putExtra("mystuff", "this is my stuff");
this.startService(i);
} else {
//stop the service here
}
}
下面是服務的代碼...
public class StalkService extends IntentService {
public StalkService() {
super("StalkService");
// must override constructor
}
@Override
protected void onHandleIntent(Intent intent) {
// TODO Auto-generated method stub
String data = (String) intent.getExtras().get("mystuff");
data = data + "debug";
}
}
我有一個斷點設置在數據= data +「debug」;從未被擊中。它看起來像onHandleIntent永遠不會被執行。我正在用模擬器進行測試。我忘了什麼? 謝謝, Gary
此服務是否在清單中註冊? LogCat中有任何消息嗎? – CommonsWare
ummmm。 pp544^_^;;謝謝。 –
您是否在Android清單中添加了您的服務,請查看此處的簡單示例http://wiki.workassis.com/android-intentservice-example/ –