使用IntentService 遇到的异常 : java.lang.InstantiationException:


创建IntentService子类的时候,默认添加的构造方法是有参的,如下:
public MyIntentService(String name){
  super(name);
}

但实际上,我们需要的是无参的构造方法,如下:
public MyIntentService() {
super(nameStr);
}

那为什么会这样呢?

posted on 2014-10-21 12:36  畅遨  阅读(354)  评论(0编辑  收藏  举报

导航