Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在后台启动服务。我不会从任何广播接收器或活动中启动此服务。无论如何都可以在没有任何接收器或活动干预的情况下在后台启动服务吗?从那个服务如何开始一个活动?
请帮我提供一个合适的例子和解释。
提前致谢。
启动 aService或 an所需的Activity只是应用程序的Context. 这就是你可以调用startService(), startActivity,startActivityForResult()等的地方。第一次你可以让Context你的应用程序中可用的对象在onCreate()你的主要活动中(如AndroidManifest.xml中定义的那样)。
Service
Activity
Context
startService()
startActivity
startActivityForResult()
onCreate()