码迷,mamicode.com
首页 > 其他好文 > 详细

intent 启动activity、service的方法

时间:2015-04-12 12:01:12      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

1.通过intent启动service。
  通过传递一个Intent对象至Context.startService()将启动一个服务(或给予正在运行的服务以一个新的指令)。Android调用服务的onStart()方法并将Intent对象传递给它。
 
    Intent stpServiceIn = new Intent(context, StpService.class);
    context.startService(stpServiceIn);

intent 启动activity、service的方法

标签:

原文地址:http://www.cnblogs.com/black-mamba/p/4419203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!