亲宝软件园·资讯

展开

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

nosxcy 人气:0
想了解Android实现从activity中停止Service的方法的相关内容吗,nosxcy在本文为您仔细讲解Android activity中停止Service的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,activity,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程序设计有所帮助。

加载全部内容

相关教程
猜你喜欢
用户评论