首页 > 代码库 > android开发 使用Action启动/关闭Service
android开发 使用Action启动/关闭Service
前面有用使用Intent来控制 Service
使用的参数是Service的类
Service的启动/关闭还有另外一种方式来控制
通过Intent传入Action的参数
在manifest中注册一个Service并且设置一个action
<service android:enabled="true" android:exported="false" android:name="com.services.sev.PlayService" > <intent-filter> <action android:name="com.example.codetest_1.action.startPlayService" /> </intent-filter> </service>
注意这个name的字符串
可以在Service类中增加一个字段
public static final String ACTION = "com.example.codetest_1.action.startPlayService";
这样 只需修改Intent的调用方法 就可以启动/关闭Service了
Intent intent = new Intent(); intent.setAction(PlayService.ACTION); this.startService(intent);
Intent intent = new Intent(); intent.setAction(PlayService.ACTION); this.stopService(intent);
android开发 使用Action启动/关闭Service
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。