<action android:name="android.intent.action.SYNC" />

解决方案 »

  1.   

    说明下 我上面写错了,应该是 Intent intent = new Intent();   
      intent.setAction("android.intent.action.SYNC") ;   
      startService(intent); 
    这样依然启动不了
      

  2.   

      Intent intent = new Intent(this,SyncServer.class);    intent.setAction("android.intent.action.SYN") ;   
    startService(intent);  
    这样 。
      

  3.   

    建议楼主弄明白Broadcast与Servicehttp://blog.csdn.net/hellogv/archive/2010/11/08/5994952.aspx
    http://blog.csdn.net/hellogv/archive/2010/11/10/5999170.aspx