android编程如何让程序后台运行

通过android的四大组件之一的service来实现后台运行,类似Windows上的服务。

1、Android上的service有两种启动方式(或者说两种方法实现service)

 ①startService()和bindService() ,有区别。

2、简单的使用Service步骤(startService()):

①建立service的子类,重写onStartCommand()。(当服务启动的时候会调用该方法)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public  class  HelloService  extends  Service {
  
  @Override
   public  void  onCreate() {
   }
 
   //这个函数在低版本中使用的是onStart(),onStart()在高版本中已经过时了。
   @Override
   public  int  onStartCommand(Intent intent,  int  flags,  int  startId) {
   }
 
  @Override
   public  void  onDestroy() {
   }
}

②在清单文件中声明Service组件

1
2
3
4
5
6
7
< application >
            < service  android:name = "HelloService" >
                 < intent-fiter >
                     < action  android:name = "xxxxx" >
                 </ intent-fiter >
             </ service >
</ application >

③在Activity等调用startService(intent);启动你的Service

1
2
3
Intent intent =  new  Intent( "xxxxx" );
//还可以使用Intent intent = new Intent(activity.this,HelloService.class);
startService(intent);

注:两种方法各有不同,具体请看官方API:

http://developer.android.com/guide/components/services.html

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。