Android Activity与远程Service的通信学习总结
当一个Service在androidManifest中被声明为 process=":remote", 或者是还有一个应用程序中的Service时,即为远程Service, 远程的意思是和当前程序不在同一个进程中执行。
Activity和远程Service的跨进程通信(IPC)通过Binder机制,使用AIDL服务实现。
一. 定义远程服务端
1.新建一个project,project文件夹例如以下
2. 文件内容
aidl传递复杂对象时,须要该对象实现Parcelable或Serializable接口,并在aidl文件里声明
Student.java
package com.example.aidl; import java.util.Locale; import android.R.integer;
import android.os.Parcel;
import android.os.Parcelable; public class Student implements Parcelable { public static final int SEX_MALE = 1;
public static final int SEX_FEMALE = 2; public int sno;
public String name;
public int sex;
public int age; public Student() {
} private Student(Parcel in) {
readFromParcel(in);
} public void readFromParcel(Parcel in) {
sno = in.readInt();
name = in.readString();
sex = in.readInt();
age = in.readInt();
} @Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeInt(sno);
dest.writeString(name);
dest.writeInt(sex);
dest.writeInt(age);
} public static final Parcelable.Creator<Student> CREATOR = new Parcelable.Creator<Student>() { @Override
public Student createFromParcel(Parcel in) {
return new Student(in);
} @Override
public Student[] newArray(int size) {
return new Student[size];
}
}; @Override
public int describeContents() {
return 0;
} @Override
public String toString() {
return String.format(Locale.ENGLISH, "Student[ %d, %s, %d, %d ]", sno, name, sex, age);
} }
Student.aidl
package com.example.aidl; parcelable Student;
IService.aidl
package com.example.aidl; import com.example.aidl.Student; interface IMyService{ List<Student> getStudent();
void addStudent(in Student student); //in标记为输入类型
}
然后再写远程服务类StudentService.java
package com.example.remote_service; import java.util.LinkedList;
import java.util.List; import com.example.aidl.IMyService;
import com.example.aidl.Student; import android.R.integer;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.Parcel;
import android.os.RemoteException;
import android.util.Log; public class StudentService extends Service { private static final String TAG = "StudentService"; private static final String PACKAGE_PEMISSION = "com.yjq.service"; private LinkedList<Student> studentList = new LinkedList<Student>(); @Override
public IBinder onBind(Intent intent) {
Log.d(TAG, String.format("on bind,intent = %s", intent.toString()));
return mBinder;
} //继承由AIDL生成的抽象类
// 实现aidl里的接口的方法 ,以供调用
//这里实现了aidl中的抽象函数
private final IMyService.Stub mBinder = new IMyService.Stub() { @Override
public List<Student> getStudent() throws RemoteException {
return studentList;
} @Override
public void addStudent(Student student) throws RemoteException {
if (student != null) {
synchronized (studentList) {
studentList.add(student);
}
}
} //在这里能够做权限认证。return false意味着client的调用就会失败,比方以下。仅仅同意包名为 PACKAGE_PEMISSION 的client通过,
//其它apk将无法完毕调用过程
@Override
public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
throws RemoteException {
String packageName = null;
String[] packages = StudentService.this.getPackageManager().
getPackagesForUid(getCallingUid());
if (packages != null && packages.length > 0) {
packageName = packages[0];
}
Log.d(TAG, "onTransact: " + packageName);
if (!PACKAGE_PEMISSION.equals(packageName)) {
return false;
}
return super.onTransact(code, data, reply, flags);
} }; @Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "student服务创建"); synchronized (studentList) {
for (int i = 1; i < 6; i++) {
Student student = new Student();
student.name = "student#" + i;
student.age = i * 5;
studentList.add(student);
}
} } @Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG, "student服务启动");
return super.onStartCommand(intent, flags, startId);
} @Override
public void onDestroy() {
Log.d(TAG, "student服务结束");
super.onDestroy();
} }
Stub这个内部类是一个实现了IMyService接口的Binder抽象类
onTransact()是通过应用程序的包名来限制权限的,通过验证的程序才干绑定。 同意绑定的client程序 的包名。可在client的androidManifist中查看。
并注意在androidManifest中声明
<service
android:name="com.example.remote_service.StudentService"
android:process=":remote"
>
<intent-filter >
<!-- 这里的action是隐式bindService时用到的 -->
<action android:name="com.example.remoteservice" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter> </service>
要声明action以供隐式bindService
二. 本地Activity怎样绑定远程Service
新建一个项目作为绑定远程Service的client,将上面的aidl所在包拷贝到src中,注意整个包名和文件名称都要全然一样,否则无法远程绑定。
再写MainActivity.java来进行绑定操作
package com.yjq.local_service; import java.util.List; import com.example.aidl.IMyService;
import com.example.aidl.Student;
import com.yjq.local_service.MyService.MyBinder;
import com.yjq.service.R;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection; public class MainActivity extends Activity { private static final String TAG = "MainActivity_local"; //绑定远程Service的action
public static final String BIND_REMOTE_SERVICE_ACTION = "com.example.remoteservice"; // 远程服务 , 服务的类是在aidl中定义的
private IMyService mRemoteService; private Button bindRemoteServiceButton; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); bindRemoteServiceButton =(Button)findViewById(R.id.bind_remote_service); bindRemoteServiceButton.setOnClickListener( new OnClickListener() {
@Override
public void onClick(View v) {
bindRemoteService();
}
});
} /**
* 创建并绑定远程Service
* */
private void bindRemoteService() {
Intent intentService = new Intent(BIND_REMOTE_SERVICE_ACTION);
intentService.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
bindService(intentService, remoteServiceConnection, BIND_AUTO_CREATE);
} /**
* 绑定远程服务的ServiceConnection类
*/
ServiceConnection remoteServiceConnection = new ServiceConnection() { @Override
public void onServiceDisconnected(ComponentName name) {
mRemoteService = null;
} @Override
public void onServiceConnected(ComponentName name, IBinder service) {
mRemoteService = IMyService.Stub.asInterface(service); new Thread(new Runnable() {
@Override
public void run() {
try {
List<Student> students = mRemoteService.getStudent();
for (Student s : students) {
System.out.println("远程调用: " + s.toString());
}
} catch (Exception e) {
// TODO: handle exception
}
}
}).start(); }
}; @Override
protected void onDestroy() {
unbindService(remoteServiceConnection);
super.onDestroy();
} }
activity中通过
bindService(intentService, remoteServiceConnection, BIND_AUTO_CREATE);
来绑定远程Service
实现接口的几条说明:
*不会有返回给调用方的异常
*默认IPC调用是同步的。假设已知IPC服务端会花费非常多毫秒才干完毕,那就不要在Activity或View线程中调用,否则会引起应用程序挂起(Android可能会显示“应用程序未响应”对话框),所以上面创建了一个Thread来运行
*AIDL接口中仅仅支持方法,不能声明静态成员。
并且。当调用结束时,应该使用
unbindService(remoteServiceConnection);
来解除绑定,否则会造成内存泄漏
三. 执行測试
先安装服务端的程序,再执行client程序。点击绑定button,即看到结果
08-20 22:49:48.447: I/System.out(1319): 远程调用: Student[ 0, student#1, 0, 5 ]
08-20 22:49:48.457: I/System.out(1319): 远程调用: Student[ 0, student#2, 0, 10 ]
08-20 22:49:48.457: I/System.out(1319): 远程调用: Student[ 0, student#3, 0, 15 ]
08-20 22:49:48.457: I/System.out(1319): 远程调用: Student[ 0, student#4, 0, 20 ]
08-20 22:49:48.457: I/System.out(1319): 远程调用: Student[ 0, student#5, 0, 25 ]
Demo下载: http://download.csdn.net/detail/guige_csdn/9032089
四. 在android中的应用
摘自:http://blog.csdn.net/u011485531/article/details/12073647
以下我们就讲一个挂断电话的样例,我们知道。Android的api里面是没有挂断电话的操作的
那假设我们的应用就有这样一个需求呢,那怎么办
能够通过java的反射来实现。也能够通过aidl来实现,以下介绍aidl的方法
首先,我们先把两个aidl文件拷贝到src文件夹以下
你肯定会问,这些aidl文件是在那里找到的,那么我能够告诉你,这些是Android的源代码里面找到的,就是在base这个以下的
大家能够下载下来看看。假设有不会的,请看点击这里
既然把aidl文件拷贝过去之后。我们就能够写代码啦
com.xiaobin.endcall.MainActivity
- package com.xiaobin.endcall;
- import java.lang.reflect.Method;
- import com.android.internal.telephony.ITelephony;
- import android.app.Activity;
- import android.os.Bundle;
- import android.os.IBinder;
- import android.view.View;
- public class MainActivity extends Activity
- {
- @Override
- public void onCreate(Bundle savedInstanceState)
- {
- super.onCreate(savedInstanceState);
- this.setContentView(R.layout.main);
- }
- public void click(View v)
- {
- endCall();
- }
- //挂断电话
- private void endCall()
- {
- try
- {
- //通过反射拿到android.os.ServiceManager里面的getService这种方法的对象
- Method method = Class.forName("android.os.ServiceManager").getMethod("getService", String.class);
- //通过反射调用这个getService方法,然后拿到IBinder对象,然后就能够进行aidl啦
- IBinder iBinder = (IBinder) method.invoke(null, new Object[] {TELEPHONY_SERVICE});
- ITelephony telephony = ITelephony.Stub.asInterface(iBinder);
- telephony.endCall();
- }
- catch (Exception e)
- {
- e.printStackTrace();
- }
- }
- }
由于那个服务没有公开的,所以我们就要用到反射来调用这个服务,来拿到Binder对象
还有重要的一点喔,要加上对应的权限。不然挂不断的喔
- <uses-permission android:name="android.permission.CALL_PHONE"/>
好啦,到这里。挂断电话的操作就完毕的啦,能够測试一下啦,然后我们手机卫士的这个项目的黑名单那里也有挂断电话的操作的喔
挂断电话的样例下载:http://download.csdn.net/detail/guige_csdn/9032239
Android Activity与远程Service的通信学习总结的更多相关文章
- android 中activity调用远程service中的方法之 aidl的使用
服务端:只有服务,没有界面 1.编写interface文件,复制到 .aidl 文件中,并去掉其中的public 等修饰符.系统会自动在gen目录下生成对应的java文件 (对应本地调用中的接口文件 ...
- Android成长日记-Android四大组件之Service组件的学习
1.什么是Service? Service是Android四大组件中与Activity最相似的组件,它们都代表可执行的程序,Service与Activity的区别在于:Service一直在后台运行,它 ...
- android 远程Service以及AIDL的跨进程通信
在Android中,Service是运行在主线程中的,如果在Service中处理一些耗时的操作,就会导致程序出现ANR. 但如果将本地的Service转换成一个远程的Service,就不会出现这样的问 ...
- Android四大组件之一 -- Service详解
相信大多数朋友对Service这个名词都不会陌生,没错,一个老练的Android程序员如果连Service都没听说过的话,那确实也太逊了.Service作为Android四大组件之一,在每一个应用程序 ...
- Android学习总结(四)—— Activity和 Service进行通信
一.Activity 和 Service进行通信的基本概念 前面我们学习我生命周期里面包含了启动和停止服务的方法,虽然服务器在活动里启动,但在启动了服务之后,活动与服务基本就没有什么关系了.我们在活动 ...
- Android:(本地、可通信的、前台、远程)Service使用全面介绍
2.具体使用解析 2.1 本地Service 这是最普通.最常用的后台服务Service. 2.1.1 使用步骤 步骤1:新建子类继承Service类 需重写父类的onCreate().onStart ...
- 一个简单的demo学习Android远程Service(AIDL的使用)
这是milo很早之前写在论坛上的一个帖子,现在整理出来,milo也复习一下一般来说Android 的四大组件都是运行在同一个进程中的,但远程Service运行在不同的进程里.这进程间的通信是使用了An ...
- Android 服务类Service 的详细学习
http://blog.csdn.net/vipzjyno1/article/details/26004831 Android服务类Service学习四大组建 目录(?)[+] 什么是服务 服务有 ...
- Android应用程序的Activity启动过程简要介绍和学习计划
文章转载至CSDN社区罗升阳的安卓之旅,原文地址:http://blog.csdn.net/luoshengyang/article/details/6685853 在Android系统中,Activ ...
随机推荐
- 小程序08 小程序访问服务器API
后台交互 小程序是前端框架,需要和后台交互,本次课程主要介绍网络API. 小程序提供的网络访问API wx.request接口 发起 HTTPS 网络请求. 使用rqeust接口前的工作 1.小程序需 ...
- css--字体和文本样式
文字样式属性 字体:font-family 文字大小:font-size 文字颜色:font-color 文字粗细:font-weight 文字样式:font-style font-family字体属 ...
- spoj-TSUM Triple Sums
题目描述 题解: 很吊的容斥+$FFT$,但是并不难. 首先,由于有重复,我们要容斥. 怎么办? 记录三个多项式, 只取一个:$w1$; 相同物体拿两个:$w2$; 相同物体拿三个:$w3$; 然后答 ...
- 环境变量HISTCONTROL命令及对快捷键Ctrl+o命令的影响
在linux中环境变量HISTCONTROL可以控制历史的记录方式. HISTCONTROL有以下的选项: ignoredups 默认,忽略重复命令 ignorespace ...
- 【练习】reserving.kr 之imageprc write up
补充:c++ builder 与 windows API经典范例 #include <vcl.h> #pragma hdrstop #include "Unit1.h" ...
- PADS规则设计-对某一网络/元件单独设置规则
转载请注明出处,并附带本文网址https://www.cnblogs.com/brianblog/p/9894867.html, 在PADS规则设计中可能会遇到某个走线与另一个走线之间的间距,普通规则 ...
- luogu2261 [CQOI2007]余数求和
除法分块. 猜想: 记 \(g(x)=\lfloor k / \lfloor k / x\rfloor \rfloor\),则对于 \(i \in [x,g(x)]\),\(\lfloor k / i ...
- 跟初学者学习IbatisNet第四篇
这一章我们主要介绍一下IbatisNet里面的其它用法主要有以下几点: 1,如何得到运行时ibatis.net动态生成的SQL语句? 2,如何获取DbCommand? 3,如何返回DataTable, ...
- 一些简单的JavaScript的方法
<script type="text/javascript"> //js跳转 function UserMouserDown() { confirm('你确定要删除吗? ...
- HDU 1874 最直接的最短路径问题
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1874 Problem Description 某省自从实行了很多年的畅通工程计划后,终于修建了很多路. ...