这是本文档旧的修订版!
在文件中添加 android:persistent="true"
...
<application>
android:persistent="true"
android:name="com.example.myservice.application.MyApplication"
...
<service>
android:name="com.example.myservice.MyServie"
...
</service>
</application>
...
在onCreate中添加:
public class MyApplication extends Application{ public void onCreate(){ super.onCreate(); //add-begin Intent intent = new Intent(); intent.setComponent(new ComponentName(com.example.myservice, com.example.myservice.MyService)); startServiceAsUser(intent, UserHandle.OWNER); //end-add } }