标签:href arc 对象创建 包名 完全 catch 客户 context 它的
http://blog.csdn.net/ducklikejava/article/details/51559244
Android Studio
中写的一个AIDL
的小DEMO.Module
,至少两个,但是最好是3个 AIDL
文件与它的Service
所在的Module
Module
,也就是你真正调用AIDL
的Module
AIDL
需要使用的Parcelable
对象存放的Module
.如果你要传递的只是基本的数据类型,那么这一项可以不要。如果你直接将该对象创建在你的调用AIDL
的Module
中,这一项也可以不要。Module
呢? Module
是作为第一个和第二个的共同依赖存在的。这样,两边都可以使用其中的 对象。然后,你得先有一个Service
,这个Service
就是你的AIDL
的具体实现。你的AIDL
想要什么功能,完全取决于你的service
怎么写了。
package com.pythoncat.aidl_libiary;
import android.app.Service;
import android.content.Intent;
public class HelloService extends Service {
public HelloService() {
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
Service
已经有了。但是目前还没有什么意义。为了将这个AIDL
做得有意思一点,我们假设你是要通过AIDL
传递复杂的数据,比如Student
这样类似的一个java bean
。Student
类了,注意:必须实现Parcelable
,不如就不能AIDL
了。差不多这个类就长这样: package com.pythoncat.core.model;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Created by pythonCat on 2016/6/1.
*/
public class Student implements Parcelable {
public String name;
public int age;
public int sex;
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(this.name);
dest.writeInt(this.age);
dest.writeInt(this.sex);
}
public Student() {
}
protected Student(Parcel in) {
this.name = in.readString();
this.age = in.readInt();
this.sex = in.readInt();
}
public static final Creator<Student> CREATOR = new Creator<Student>() {
@Override
public Student createFromParcel(Parcel source) {
return new Student(source);
}
@Override
public Student[] newArray(int size) {
return new Student[size];
}
};
}
Student
已经准备好了,现在就是真的要定义一下AIDL
文件了。因为这个Student
是要通过AIDL
去传递的,所以这个Student
也要成为一个AIDL
.
这句话听起来比较费解,是因为我表达的不够好。其实说白了,就是要多创建一个名为Student.aidl
的文件,这个文件差不多这样:
// Student.aidl
package com.pythoncat.core.model;
parcelable Student;
注意了:这个文件所在目录,必须是在一个
aidl
目录下,创建一个和Student.Java
同包名的包。比如,我的Student.java
是在package com.pythoncat.core.model;
中,那么,我就要在AIDL
所在Module
中,创建一个aidl
目录,然后在该目录下创建一个package
,package
名字就是package com.pythoncat.core.model
。最后,在该package
下,创建一个Student.aidl
文件,里面就写上面3句话就好了。
到这里,Java bean
算是真的准备好了,显示开始写你的需要被外界调用的AIDL
了。这个文件位置随便写,你就在java
目录下创建一个.aidl
文件好了。文件名假设是IHelloInterface
,文件假设是这样的:
```
// IHelloInterface.aidl
package com.pythoncat.aidl_libiary;
import com.pythoncat.core.model.Student;
// Declare any non-default types here with import statements
interface IHelloInterface {
/**
* Demonstrates some basic types that you can use as parameters
* and return values in AIDL.
*/
void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
double aDouble, String aString);
String hello();
Student getOne();
}
```
注意一下,上面有一个
import com.pythoncat.core.model.Student;
就是刚才的那个Student.aidl
的导入。、
build -> make project (ctrl+F9)
一下。让android studio
帮你一把。build -> make project (ctrl+F9)
之后,你会看到你的IHelloInterface .aidl
自动跑到aidl
目录里面去了。不过这个都不是我关心的。现在,我们完善我们的HelloService
:
package com.pythoncat.aidl_libiary;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.support.annotation.Nullable;
import com.pythoncat.core.model.Student;
/**
* <action android:name="com.pythoncat.aidl_libiary.HelloService"/>
* <hr/>
* package="com.pythoncat.aidl_libiary"
*/
public class HelloService extends Service {
public HelloService() {
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return new MyBinder();
}
class MyBinder extends IHelloInterface.Stub {
@Override
public void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat, double aDouble, String aString) throws RemoteException {
}
@Override
public String hello() throws RemoteException {
return "Just Hello World";
}
@Override
public Student getOne() throws RemoteException {
return new Student();
}
}
}
Service,AIDL,Model
已经关联起来了,接下来就是调用者的事情了。Activity
去调用试试吧。ServiceConnection
去获取接口的引用,然后就可以调用接口里面的方法了。[接口的实现,已经在我们的HelloService
里面搞定了]。调用就一个Activity
里面一个按钮的点击事件 ,布局文件就不写了,没什么意义。那么调用者差不多这样的:
package com.pythoncat.helloaidl;
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.os.RemoteException;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import com.apkfuns.logutils.LogUtils;
import com.github.johnpersano.supertoasts.SuperToast;
import com.pythoncat.aidl_libiary.IHelloInterface;
import com.pythoncat.core.model.Student;
public class MainActivity extends AppCompatActivity {
private IHelloInterface iService;
private ServiceConnection conn = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
iService = IHelloInterface.Stub.asInterface(service);
try {
final String hello = iService.hello();
LogUtils.e("hello::::::::" + hello);
final Student one = iService.getOne();
LogUtils.e(one);
runOnUiThread(new Runnable() {
@Override
public void run() {
SuperToast.cancelAllSuperToasts();
SuperToast.create(getApplicationContext(), hello, SuperToast.Duration.MEDIUM).show();
}
});
} catch (RemoteException e) {
e.printStackTrace();
}
}
@Override
public void onServiceDisconnected(ComponentName name) {
iService = null;
LogUtils.e("iService::::::::" + iService);
}
};
private boolean bindService;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onStart() {
super.onStart();
final Intent in = new Intent();
in.setClassName(this, "com.pythoncat.aidl_libiary.HelloService");
in.setPackage("com.pythoncat.aidl_libiary");
in.setAction("com.pythoncat.aidl_libiary.HelloService");
bindService = bindService(in, conn, Context.BIND_AUTO_CREATE);
LogUtils.e("bindService=" + bindService);
}
@Override
protected void onStop() {
super.onStop();
if (conn != null) {
unbindService(conn);
}
}
public void clickButton(View v) {
LogUtils.e("bindService=" + bindService);
LogUtils.e(iService);
if (iService == null) {
SuperToast.cancelAllSuperToasts();
SuperToast.create(getApplicationContext(), iService + "", SuperToast.Duration.MEDIUM).show();
} else {
SuperToast.cancelAllSuperToasts();
try {
SuperToast.create(getApplicationContext(), iService.hello(), SuperToast.Duration.MEDIUM).show();
} catch (RemoteException e) {
e.printStackTrace();
}
}
}
}
AIDL
的调用的整个过程。build -> make project (ctrl+F9)
的操作,还是跑不通,就是代码有问题了。 不过,我必须坦白的是,我的调用者的
Module
还是引用了AIDL
所在Module
。因为我不引用就不能成功绑定远程服务。这个问题应该是可以解决的,以后解决了,再记录到这边来。
标签:href arc 对象创建 包名 完全 catch 客户 context 它的
原文地址:http://www.cnblogs.com/jukan/p/7229127.html