Android实现从activity中停止Service的方法

2019-12-10 19:14:38于海丽
易采站长站为您分析Android实现从activity中停止Service的方法,结合实例形式简单分析了Android中Service的注册、创建及使用stopService停止Service的方法,需要的朋友可以参考下  

本文实例讲述了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开发频道。