传递复杂数据的AIDL服务
1.AIDL服务只支持有限的数据类型,因此要用AIDL服务传递一些复杂的数据就需要做更进一步的处理。AIDL服务支持的数据类型如下:
1)Java的简单类型(int、char、boolean等),不需要导入(import)
2)String和CharSequence。不需要导入(import)
3)List和Map。但要注意,List和Map对象的元素必须是AIDL服务支持的数据类型。不需要导入(import)
4)AIDL自动生成的接口。需要导入(import)。
5)实现android.os.Parcelable接口的类。需要导入(import)
传递不需要Import的数据类型的值的方式相同。传递一个需要Import的数据类型的值(例如,实现android.os.Parcelable接口的类)的步骤略显复杂。除了要建立一个实现android.os.Parcelable接口的类外,还需要为这个类单独建立一个aidl文件,并使用parcelable关键字进行定义。具体的步骤如下:
服务器端
(1)建立一个IMyService.aidl文件,代码如下
-
package net.blogjava.mobile.complex.type.aidl;
-
import net.blogjava.mobile.complex.type.aidl.Product;
-
-
interface IMyService
-
{
-
Map getMap(in String country, in Product product);
-
Product getProduct();
-
}
这里有两个值得注意的地方:
*Product是一个实现android.os.Parcelable接口的类,需要使用Import导入这个类。
*如果方法的类型是非简单类型,例如,String、List或自定义的类,需要使用in、out或inout修饰。其中In表示这个值被客户端设置;out表示这个值被服务端设置;inout表示这个值既被客户端设置,又被服务端设置。
(2)编写Product类。该类是用于传递的数据类型,代码如下
-
public class Product implements Parcelable
-
{
-
private int id;
-
private String name;
-
private float price;
-
public static final Parcelable.Creator<Product> CREATOR = new Parcelable.Creator<Product>()
-
{
-
public Product createFromParcel(Parcel in)
-
{
-
return new Product(in);
-
}
-
-
public Product[] newArray(int size)
-
{
-
return new Product[size];
-
}
-
};
-
public Product()
-
{
-
-
}
-
private Product(Parcel in)
-
{
-
readFromParcel(in);
-
}
-
-
@Override
-
public int describeContents()
-
{
-
// TODO Auto-generated method stub
-
return 0;
-
}
-
-
public void readFromParcel(Parcel in)
-
{
-
id = in.readInt();
-
name = in.readString();
-
price = in.readFloat();
-
-
}
-
-
@Override
-
public void writeToParcel(Parcel dest, int flags)
-
{
-
dest.writeInt(id);
-
dest.writeString(name);
-
dest.writeFloat(price);
-
-
}
-
-
public int getId()
-
{
-
return id;
-
}
-
-
public void setId(int id)
-
{
-
this.id = id;
-
}
-
-
public String getName()
-
{
-
return name;
-
}
-
-
public void setName(String name)
-
{
-
this.name = name;
-
}
-
-
public float getPrice()
-
{
-
return price;
-
}
-
-
public void setPrice(float price)
-
{
-
this.price = price;
-
}
-
-
}
在编写Product类时要注意以下3点
*Product类必须实现android.os.Parcelable接口。该接口用于序列化对象。在android中之所以使用Parcelable接口序列化,而不是java.io.Serializable接口,是因为Google在开发android时发现Serilzable序列化的效率并不高,因此,特意提供了一个Parcelable接口来序列化对象。
*在Product类中必须有一个静态常量,常量名必须是CREATOR,而且CREATOR常量的数据类型必须是Parcelable.Creator。
*在writeToParcel方法中需要将序列化的值写入Parcel对象。
(3)建立一个Product.aidl文件,并输入一下内容:
parcelable Product;
(4)编写一个MyService类,代码如下:
-
public class MyService extends Service
-
{
-
-
public class MyServiceImpl extends IMyService.Stub
-
{
-
-
@Override
-
public Product getProduct() throws RemoteException
-
{
-
-
Product product = new Product();
-
product.setId(1234);
-
product.setName("汽车");
-
product.setPrice(31000);
-
return product;
-
}
-
-
@Override
-
public Map getMap(String country, Product product)
-
throws RemoteException
-
{
-
Map map = new HashMap<String, String>();
-
map.put("country", country);
-
map.put("id", product.getId());
-
map.put("name", product.getName());
-
map.put("price", product.getPrice());
-
map.put("product", product);
-
return map;
-
}
-
}
-
-
@Override
-
public IBinder onBind(Intent intent)
-
{
-
return new MyServiceImpl();
-
}
-
-
}
(5)在清单文件中配置MyService类,代码如下
-
<service android:name=".MyService" >
-
<intent-filter>
-
<action android:name="net.blogjava.mobile.aidl.IService" />
-
</intent-filter>
-
</service>
客户端
-
public class Main extends Activity implements OnClickListener
-
{
-
private IMyService myService = null;
-
private Button btnInvokeAIDLService;
-
private Button btnBindAIDLService;
-
private TextView textView;
-
private ServiceConnection serviceConnection = new ServiceConnection()
-
{
-
-
@Override
-
public void onServiceConnected(ComponentName name, IBinder service)
-
{
-
myService = IMyService.Stub.asInterface(service);
-
btnInvokeAIDLService.setEnabled(true);
-
-
}
-
-
@Override
-
public void onServiceDisconnected(ComponentName name)
-
{
-
// TODO Auto-generated method stub
-
-
}
-
};
-
-
@Override
-
public void onClick(View view)
-
{
-
switch (view.getId())
-
{
-
case R.id.btnBindAIDLService:
-
bindService(new Intent("net.blogjava.mobile.complex.type.aidl.IMyService"),
-
serviceConnection, Context.BIND_AUTO_CREATE);
-
break;
-
-
case R.id.btnInvokeAIDLService:
-
try
-
{
-
String s = "";
-
s = "Product.id = " + myService.getProduct().getId() + "\n";
-
s += "Product.name = " + myService.getProduct().getName()
-
+ "\n";
-
s += "Product.price = " + myService.getProduct().getPrice()
-
+ "\n";
-
-
s += myService.getMap("China", myService.getProduct()).toString();
-
textView.setText(s);
-
}
-
catch (Exception e)
-
{
-
-
}
-
break;
-
}
-
-
}
-
-
@Override
-
public void onCreate(Bundle savedInstanceState)
-
{
-
super.onCreate(savedInstanceState);
-
setContentView(R.layout.main);
-
btnInvokeAIDLService = (Button) findViewById(R.id.btnInvokeAIDLService);
-
btnBindAIDLService = (Button) findViewById(R.id.btnBindAIDLService);
-
btnInvokeAIDLService.setEnabled(false);
-
textView = (TextView) findViewById(R.id.textview);
-
btnInvokeAIDLService.setOnClickListener(this);
-
btnBindAIDLService.setOnClickListener(this);
-
}
-
}
首先运行服务端程序,然后运行客户端程序,首先单击“绑定AIDL服务”按钮,待绑定成功后,单击“调用AIDL服务”按钮。
文章来源: panda1234lee.blog.csdn.net,作者:panda1234lee,版权归原作者所有,如需转载,请联系作者。
原文链接:panda1234lee.blog.csdn.net/article/details/8783199
- 点赞
- 收藏
- 关注作者
评论(0)