当前位置: 网学 > 编程文档 > Android > 正文

android Service Binder交互通信实例

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/19
下载{$ArticleTitle}原创论文样式
nbsp;package="com.easymorse" android:versionCode="1" android:versionName="1.0">    <application android:icon="@drawable/icon" android:label="@string/app_name">        <activity android:name=".LocalServiceDemoActivity"            android:label="@string/app_name">            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>        <service android:name="CountService" />    </application>    <uses-sdk android:minSdkVersion="3" /></manifest/>     在Activity中启动和关闭本地服务。 package com.easymorse; import android.app.Activity;import android.content.Intent;import android.os.Bundle; public class LocalServiceDemoActivity extends Activity {    /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);         this.startService(new Intent(this, CountService.class));    }     @Override    protected void onDestroy() {        super.onDestroy();        this.stopService(new Intent(this, CountService.class));    }}   可通过日志查看到后台线程打印的计数内容。 编写本地服务和Activity交互的示例上面的示例是通过startService和stopService启动关闭服务的。适用于服务和activity之间没有调用交互的情况。如果之间需要传递参数或者方法调用。需要使用bind和unbind方法。 具体做法是,服务类需要增加接口,比如ICountService,另外,服务类需要有一个内部类,这样可以方便访问外部类的封装数据,这个内部类需要继承Binder类并实现ICountService接口。还有,就是要实现Service的onBind方法,不能只传回一个null了。 这是新建立的接口代码: package com.easymorse; public interface ICountService {    public abstract int getCount();}   修改后的CountService代码: package com.easymorse; import android.app.Service;import android.content.Intent;import android.os.Binder;import android.os.IBinder;import android.util.Log; public class CountService extends Service implements ICountService {     private boolean threadDisable;     private int count;

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号