Tag:Transmitting big data
-
Method and implementation of Android transferring big data across processes
Recently, the image data will be transferred from the service side to the client side. The previous data is transferred through Aidl: Create a Parcelable file ImageData.java public class ImageData implements Parcelable { private byte[] data; public byte[] getData() { return data; } public ImageData(byte[] dataIn) { this.data = dataIn; } public ImageData(Parcel in) { […]