所有教程都告诉我这样做:
startService(new Intent(this, MyService.class));
但是没有构造函数接受 Activity、Class,所以我得到语法错误
http://developer.android.com/reference/android/content/Intent.html
我正在尝试以这种方式生成服务,
startService(new Intent(getApplicationContext(), MyService.class));
但我的服务永远不会执行。
public class MyService extends IntentService {
public MyService() {
super("MyService");
}
@Override
protected void onHandleIntent(Intent intent) {
//do stuff
}
}
我怎样才能产生服务?
答案:我的 android manifest 没有特定的包