本文实例讲述了Android实现从activity中停止Service的方法。分享给大家供大家参考,具体如下:
1、在AndroidManifest.xml注册Service
1
2
3
4
5
|
< service android:name = ".service.SensorService" >
< intent-filter >
< action android:name = "ITOP.MOBILE.SIMPLE.SERVICE.SENSORSERVICE" />
</ intent-filter >
</ service >
|
2、在Activity中调用
1
2
3
|
final Intent intent = new Intent();
intent.setAction( "ITOP.MOBILE.SIMPLE.SERVICE.SENSORSERVICE" );
stopService(intent);
|
希望本文所述对大家Android程序设计有所帮助。