top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Can byte array be passed as argument in AIDL ?

0 votes
1,015 views

I need to pass byte[ ] array from clien to server . I am using AIDL for this purpose .. but i need to pass byte[] array ... android developer doesnt tell about this :
http://developer.android.com/guide/components/aidl.html
did anyone tried it this before ? or can we pass it ?

posted Jun 18, 2013 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+1 vote

if we can make the byte[] array parcelable then we can do

answer Jun 18, 2013 by anonymous
0 votes
answer Jun 20, 2013 by anonymous
Similar Questions
0 votes

AIDL make the interface easy to write,but the android programmer not totally use aidl anywhere, some case such as ActivityManagerService(they use ActivityManagerNative) not use aidl to descript the interface, neighter ApplicationThread(they use ApplicationThreadNative).

So why they not use aidl in these cases ? cant or something else?

...