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

android Service Binder交互通信实例

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/19
下载{$ArticleTitle}原创论文样式
lt;intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>        <service android:name="CountService">            <intent-filter>                <action android:name="com.easymorse.CountService"/>            </intent-filter>        </service>    </application>    <uses-sdk android:minSdkVersion="3" /></manifest>     Acitity代码不再通过startSerivce和stopService启动关闭服务,另外,需要通过ServiceConnection的内部类实现来连接Service和Activity。 package com.easymorse; import android.app.Activity;import android.content.ComponentName;import android.content.Intent;import android.content.ServiceConnection;import android.os.Bundle;import android.os.IBinder;import android.util.Log; public class LocalServiceDemoActivity extends Activity {     private ServiceConnection serviceConnection = new ServiceConnection() {         @Override        public void onServiceConnected(ComponentName name, IBinder service) {            countService = (ICountService) service;            Log.v("CountService", "on serivce connected, count is "                    + countService.getCount());        }         @Override        public void onServiceDisconnected(ComponentName name) {            countService = null;        }     };     private ICountService countService;     /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        this.bindService(new Intent("com.easymorse.CountService"),                this.serviceConnection, BIND_AUTO_CREATE);    }     @Override    protected void onDestroy() {           this.unbindService(serviceConnection)

网学推荐

免费论文

原创论文

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