android 创建后台运行的服务程序

在Activity里面开启和关闭后台服务

    startService(new Intent(this, MyService.class));

    stopService(new Intent(this, MyService.class));


在manifest的application里面声明服务

    <service android:enabled="true" android:name=".MyService"/>


继承Service实现自己的服务类


public class MyService extends Service {

  1.  
  2.   
  3.     @Override  
  4.     public IBinder onBind(Intent intent) {  
  5.         return null;  
  6.     }  
  7.   
  8.     @Override  
  9.     public void onCreate() {  
  10.         
  11.     }  
  12.   
  13.     @Override  
  14.     public void onDestroy() {  
  15.       
  16.     }  
  17.   
  18.     @Override  
  19.     public void onStart(Intent intent, int startid) {  
  20.        
  21.     }  
  22. }

你可能感兴趣的:(android 创建后台运行的服务程序)