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.
感谢我在上一个问题中从某人那里得到了很多帮助,我比以前更领先了。现在我需要弄清楚如何将此广播变成服务。还是我需要制作第三个文件并从该课程中提供服务?
任何帮助都会很酷!
创建一个扩展服务的类。
public class myService extends Service{
并使用传递给 BroadcastReceiver 的 Application Context 对象来启动服务。
context.startService(intent);
如果您需要从 Intent 对象中携带数据,请将一组附加内容放入您在调用时创建的 Intent 对象中
sendBroadcast(Intent intent);