本文实例讲述了Android实现从activity中停止Service的方法。分享给大家供大家参考,具体如下:
1、在AndroidManifest.xml注册Service
<service android:name=".service.SensorService" > <intent-filter> <action android:name="ITOP.MOBILE.SIMPLE.SERVICE.SENSORSERVICE"/> </intent-filter> </service>
2、在Activity中调用
final Intent intent = new Intent(); intent.setAction("ITOP.MOBILE.SIMPLE.SERVICE.SENSORSERVICE"); stopService(intent);
更多关于Android开发相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》
希望本文所述对大家Android程序设计有所帮助。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索android
, activity
service
android 停止activity、android 停止service、androidservice已停止、service启动activity、activity service,以便于您获取更多的相关知识。
时间: 2025-01-16 05:33:11