android 47 service绑定

简介:
如果一个service已经启动了,activity和service绑定了在解除邦定,则这个service不会销毁,因为这个service不是这个Activity创建的。

 service生命周期:

Activity绑定的同时创建service则解除绑定的时候service销毁。

main.xml:

复制代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/btnStartService"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="start service" />

    <Button
        android:id="@+id/btnBindService"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="bind service" />

    <Button
        android:id="@+id/btnUnbindService"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="unBind service" />

</LinearLayout>
复制代码

mainACtivity.java

复制代码
package com.sxt.day07_03;

import com.sxt.day07_03.MyService.MyBinder;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;

public class MainActivity extends Activity {
    MyBinder mBider;
    Intent mIntent;
    private ServiceConnection conn=new ServiceConnection() {//conn是接口类型
        @Override
        //绑定后由于异常被迫解除绑定时调用。
        public void onServiceDisconnected(ComponentName name) {
        }
        @Override
        //绑定成功Service的onBind方法执行后调用,已经绑定成功再绑定是不会调用这个方法的,并接收onBind方法的返回值(传过来的是地址是同一个对象,要实现IBinder接口)
        public void onServiceConnected(ComponentName name, IBinder service) {
            mBider=(MyBinder) service;
            Log.i("main",service.toString()+",count:"+mBider.getCount());//返回11
        }
    };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setListener();
    }

    private void setListener() {
        setStartServiceClickListener();
        bindServiceClickListener();
        unBindServiceClickListener();
    }

    private void unBindServiceClickListener() {
        findViewById(R.id.btnUnbindService).setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                if(mIntent==null){
                    return ;
                }
                unbindService(conn);
            }
        });
    }

    private void bindServiceClickListener() {
        findViewById(R.id.btnBindService).setOnClickListener(new OnClickListener() {
            
            @Override
            public void onClick(View v) {
                mIntent=new Intent(MainActivity.this, MyService.class);
                bindService(mIntent, conn, Context.BIND_AUTO_CREATE);//conn是绑定成功时候回调的接口的实现类,BIND_AUTO_CREATE表示如果没有启动则连绑定再启动。
            }
        });
    }

    private void setStartServiceClickListener() {
        findViewById(R.id.btnStartService).setOnClickListener(new OnClickListener() {
            
            @Override
            public void onClick(View v) {
                mIntent=new Intent(MainActivity.this, MyService.class);
                startService(mIntent);
            }
        });
    }

}
复制代码

service.java

复制代码
package com.sxt.day07_03;

import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.util.Log;

public class MyService extends Service {
    private int mCount=10;
    @Override
    //绑定成功的时候调用,已经绑定成功再绑定是不会调用这个方法的。
    public IBinder onBind(Intent intent) {
        MyBinder binder=new MyBinder();
        return binder;
    }
    class MyBinder extends Binder{//这里继承Binder类而不是IBinder接口,因为继承接口会重写方法,是不必要的。
        public int getCount(){
            return ++mCount;
        }
    }
    @Override
    public void onCreate() {//创建的时候调用,先创建再绑定。
        super.onCreate();
        Log.i("main","onCreate()");
    }
    
    @Override
    public boolean onUnbind(Intent intent) {
        Log.i("main","onUnbind");
        return true;//想解除绑定后再绑定则返回true,onUnbind方法执行后并执行onRebind方法
    }
    
    @Override
    public void onRebind(Intent intent) {//解除绑定后再绑定执行这个方法
        super.onRebind(intent);
        Log.i("main","onRebind()");
    }
    
    @Override
    public void onDestroy() {//如果这个Activity创建的这个service,则解绑的时候会调用onDestroy方法,如果不是这个Activity创建的则解绑的时候不会销毁这个service,因为不是他创建的。
        super.onDestroy();
        Log.i("main","onDestroy()");
    }
}
复制代码

 安卓的4大组件在自定义的时候都要在说明文件声明.

说明文件要添加:<service android:name="com.sxt.day07_03.MyService"/>


本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/p/4890685.html,如需转载请自行联系原作者


相关文章
|
6月前
|
Android开发
Android 11 添加Service服务SELinux问题
Android 11 添加Service服务SELinux问题
314 1
|
6月前
|
Android开发
Android基础知识:请解释Service是什么,它与IntentService的区别是什么?
Android基础知识:请解释Service是什么,它与IntentService的区别是什么?
105 0
|
5月前
|
调度 Android开发
43. 【Android教程】服务:Service
43. 【Android教程】服务:Service
53 2
|
6月前
|
Android开发
Android Service Call /dev/xxx SELinux
Android Service Call /dev/xxx SELinux
102 1
|
3月前
|
编解码 网络协议 Android开发
Android平台GB28181设备接入模块实现后台service按需回传摄像头数据到国标平台侧
我们在做Android平台GB28181设备对接模块的时候,遇到这样的技术需求,开发者希望能以后台服务的形式运行程序,国标平台侧没有视频回传请求的时候,仅保持信令链接,有发起视频回传请求或语音广播时,打开摄像头,并实时回传音视频数据或接收处理国标平台侧发过来的语音广播数据。
|
5月前
|
Android开发 Kotlin
Android面试题 之 Kotlin DataBinding 图片加载和绑定RecyclerView
本文介绍了如何在Android中使用DataBinding和BindingAdapter。示例展示了如何创建`MyBindingAdapter`,包含一个`setImage`方法来设置ImageView的图片。布局文件使用`&lt;data&gt;`标签定义变量,并通过`app:image`调用BindingAdapter。在Activity中设置变量值传递给Adapter处理。此外,还展示了如何在RecyclerView的Adapter中使用DataBinding,如`MyAdapter`,在子布局`item.xml`中绑定User对象到视图。关注公众号AntDream阅读更多内容。
93 1
|
6月前
|
存储 监控 Java
Android Service之设备存储空间监控 DeviceStorageMonitorService
Android Service之设备存储空间监控 DeviceStorageMonitorService
120 2
|
6月前
|
Android开发 数据库管理
Android如何在Activity和Service之间传递数据
Android如何在Activity和Service之间传递数据
275 3
|
6月前
|
Android开发
Android Service的两种使用方法
Android Service的两种使用方法
47 2
|
6月前
|
数据可视化 Android开发
[Android 四大组件] --- Service
[Android 四大组件] --- Service
47 0