2.启动服务按钮--service

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

2.启动服务按钮

这个类实现的是第一个按钮的功能,在这个类中新开了一个线程,并每隔一秒打印出一行日志

代码如下:

package lovefang.stadyService;
/**引入包*/
 import android.app.Service;// 服务的类
 import android.os.IBinder;
 import android.os.Binder;
 import android.content.Intent;
 import android.util.Log;
/**计数的服务*/
 public class CountService extends Service{
   /**创建参数*/
  boolean threadDisable ;
  int count;
  
  public IBinder onBind(Intent intent){
   return null;
  }
  public void onCreate(){
   super.onCreate();
    /**创建一个线程,每秒计数器加一,并在控制台进行Log输出*/
   new Thread(new Runnable(){
    public void run(){
     while(!threadDisable){
      try{
       Thread.sleep(1000);
      }catch(InterruptedException e){
       
      }
      count++;
      Log.v("CountService","Count is"+count);
     }
    }
   }).start();
  }
  public void onDestroy(){
   super.onDestroy();
    /**服务停止时,终止计数进程*/
   this.threadDisable = true;
  }
  public int getConunt(){
   return count;
  }
  class ServiceBinder extends Binder{
   public CountService getService(){
    return CountService.this;
   }
  }
 }

转载于:https://my.oschina.net/u/1014520/blog/194034

你可能感兴趣的:(2.启动服务按钮--service)