Android-服务的基本用法(一)

服务作为安卓开发的四大组件之一,发挥着非常重要的作用,下面我们以一些简单实例,总结一下服务的基本用法。

定义一个服务

新建一个项目,在项目中定义一个服务:com.example.adiqueen.servicetest->New->Service->Service,我们会看到对话框:


new Service

exported表示是否允许当前程序意外的其他程序本服务。
enabled表示是否启用这个服务。
点击finish完成创建。
这个时候我们可以看到MyService中的代码:

public class MyService extends Service {
    public MyService() {
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        throw new UnsupportedOperationException("Not yet implemented");
    }
}

MyService继承自Service 有一个方法onBind()方法,这个方法是Service惟一的一个抽象方法,必须要在子类中实现。如果我们要处理一些事情的话,就要用到几个常见的其他方法。

    /*
    服务中最常用的几个方法
     */
    //服务在创建的时候调用的方法
    @Override
    public void onCreate() {
        Log.d("MyService","onCreate()-------");
        super.onCreate();
    }

    //服务在每次启动的时候调用的方法 如果某些行为在服务已启动的时候就执行,可以把处理逻辑写在这个方法里面

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {

        Log.d("MyService","onStartCommand()-------");

        return super.onStartCommand(intent, flags, startId);
    }

    //服务销毁的时候调用的方法 可以回收部分不再使用的资源
    @Override
    public void onDestroy() {
        Log.d("MyService","onDestroy()-------");
        super.onDestroy();
    }

这个时候还没完,如果我们是使用此服务的话 这个服务在manifest中注册才能正常使用。

        

启用和停止服务

服务的启用和停止我们不会感到陌生,因为主要是借助Intent来实现的。下面我们看一下如何启用和停止服务。在这里我们设置两个按钮,分别点击按钮实现服务的启用和停止。

public class MainActivity extends AppCompatActivity {

    private Button start_servece;

    private Button stop_servece;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        start_servece = (Button)findViewById(R.id.start_servece);
        stop_servece = (Button)findViewById(R.id.stop_servece);


        start_servece.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                Intent startIntent =  new Intent(MainActivity.this,MyService.class);

                startService(startIntent); //启动服务

            }
        });
        
        stop_servece.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                Intent stopIntent =  new Intent(MainActivity.this,MyService.class);

                stopService(stopIntent); //停止服务

                //MyService类中的任何一个位置调用stopSelf()也能停止服务
            }
        });

    }
}

因为前面我们已经在服务的部分方法中添加了打印日志的代码,这个时候我们点击开启按钮,再点击关闭按钮之后的控制台信息如下:

log

说明我们完成了服务的启用和停止。

活动和服务进行通信

服务是在活动里启动的,但是服务启动之后就和活动没有关系了。但是,活动具体运行的是什么逻辑呢?活动就控制不了了。如果这样的话,我们对服务的可控性是不是就差了很多。有没有什么方式可以把活动和服务绑定一下呢?能够方便活动对服务更好的控制。答案是肯定的。这个时候就要用到前面我们提到的Service的唯一抽象方法onBind()。我们来看一个简单的实例:在服务里实现下载的功能,并能实时查看下载的进度。
实现的思路是在MyService类中创建一个Buider对象来对下载功能进行管理。
//新建一个DownloadBinder类继承自Binder
//接着在MyService的onBind()方法中返回DownloadBinder实例。

    private DownloadBinder mBinder = new DownloadBinder();

    class DownloadBinder extends Binder{

        public void startDownLoad(){

            Log.d("MyService","startDownLoad()----");

        }

        public int getProgress(){

            Log.d("MyService","getProgress()----");

            return 0;
        }
    }

    @Override
    public IBinder onBind(Intent intent) {

        return mBinder;
    }

MainActivity类中

public class MainActivity extends AppCompatActivity {

    private Button bind_servece;

    private Button unbind_servece;

    private MyService.DownloadBinder downloadBinder;

    private ServiceConnection serviceConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {

            downloadBinder = (MyService.DownloadBinder) iBinder;
            downloadBinder.startDownLoad();
            downloadBinder.getProgress();
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {

        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        bind_servece = (Button)findViewById(R.id.bind_servece);
        unbind_servece = (Button)findViewById(R.id.unbind_servece);

        bind_servece.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                Intent bindIntent =  new Intent(MainActivity.this,MyService.class);

                bindService(bindIntent,serviceConnection,BIND_AUTO_CREATE);//绑定服务

            }
        });


        unbind_servece.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                unbindService(serviceConnection);//解绑服务

            }
        });

    }
}

在MainActivity类中:
创建了ServiceConnection匿名类 重写了onServiceConnected()和onServiceDisconnected()方法。这两个方法会在活动与服务绑定和解绑的时候调用。
在onServiceConnected()方法中我们向下转型得到downloadBinder的实例,有了这个实例活动和服务之间的关系就变得很紧密了。

在这里只是一个简单的打印日志,并未做过多的任务。
部署程序、点击按钮可以看到日志:


log

服务的生命周期

服务和活动一样,也有自己的生命周期。前面有几个方法我们都已经使用到了。

一旦在项目中调用了Context的startService()方法,服务就会被启动起来,并回调onStartCommand()方法。如果这个服务之前没有被创建过,还会在onStartCommand()方法运行之前,执行onCreate() 方法。

服务一旦被启用就会保持启用的状态,知道调用了方法stopService()或者stopSelf()。

另外,还可以调用Context的bindService()方法获取一个持久的链接,Service的onBind()方法会被执行。而作为调用方的话可以或者onBind()方法里返回的IBinder对象的实例,这样就能自由的和服务进行通讯了。

调用了startService()方法以后,再调用stopService()方法的话,Service的onDestroy()方法就会执行,证明服务已经销毁了。类似的调用bindService()、unbindService()方法后onDestroy()方法也会执行。加入我们同时调用了startService()和bindService(),那么这种情况该如何让服务销毁呢?根据Android系统的机制,一个服务只要调用startService()或bindService()中的一个,就会一直处于运行态。必须以上通知满足,onDestroy()方法才会执行,服务才能销毁。这个时候要同事调用stopService()和unbindService()方法。

你可能感兴趣的:(Android-服务的基本用法(一))