0

IntentService在课堂上有这个。意图服务未启动。我究竟做错了什么?

public class getListOfUsersService extends IntentService {  
  public getListOfUsersService() {        
  super("DownloadListOfUsersIntentService");     
     System.out.println("intentService started");   
  }
 @Override  
  protected void onHandleIntent(Intent intent) {    
   System.out.println("intentService onHandle started");           
    mService.sendMessage(Protocols.REQUEST_SEND_USER_LIST);
          while(true) {
                UserHolder UH = new UserHolder();
                String usersdata = mService.getString();
                System.out.println("userdata: "+ usersdata);
                String array[] = usersdata.split("<!!>");
                UH.setUserName(array[1]);
                UH.setUserPhoneNum(array[2]);
                userHolderList.add(UH);
                System.out.println("added to usersList");               
                if(isDone) break;
           }

      }
    }

我从一个方法开始:

public void update() {
    System.out.println("update");
    Intent intent = new Intent(this, getListOfUsersService.class);
    startService(intent);
}

我在 Manifest 中注册了它:

 <service
        android:name=".getListOfUsersService"
        android:exported="false"/>
4

2 回答 2

3

您不能拥有非静态内部服务类。如果您想拥有一个内部 Service 类,请将其声明为静态并在清单文件中指定它:

<service android:name="com.my.package.OuterClass$InnerServiceClass" />
于 2014-02-07T12:47:54.750 回答
0

<service ...>孩子<application...>吗?如果不是,则可能是问题所在。

另一个建议是使用getApplicationContext()返回的上下文,但这不应该那么重要。

于 2014-02-07T12:49:22.770 回答