首页 > 移动平台 > 详细

android开发 使用Action启动/关闭Service

时间:2014-12-19 15:50:12      阅读:408      评论:0      收藏:0      [点我收藏+]

前面有用使用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

原文:http://blog.csdn.net/zzzzyu/article/details/42028151

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!