Java Code Examples for android.os.Parcel#writeDoubleArray()

The following examples show how to use android.os.Parcel#writeDoubleArray() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AnalyzerGraphic.java    From audio-analyzer-for-android with Apache License 2.0 6 votes vote down vote up
@Override
public void writeToParcel(Parcel out, int flags) {
    super.writeToParcel(out, flags);
    out.writeInt(freqAxisAlongX);
    out.writeDouble(cFreqSpum);
    out.writeDouble(cFreqSpam);
    out.writeDouble(cDb);
    out.writeDouble(xZ);
    out.writeDouble(xS);
    out.writeDouble(yZ);
    out.writeDouble(yS);
    out.writeDouble(SpumXZ);
    out.writeDouble(SpumXS);
    out.writeDouble(SpumYZ);
    out.writeDouble(SpumYS);
    out.writeDouble(SpamFZ);
    out.writeDouble(SpamFS);
    out.writeDouble(SpamTZ);
    out.writeDouble(SpamTS);

    out.writeDoubleArray(tmpS);

    out.writeInt(nFreq);
    out.writeInt(nTime);
    out.writeInt(iTimePinter);
}
 
Example 2
Source File: LivePhoto.java    From sealrtc-android with MIT License 5 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeInt(this.id);
    dest.writeInt(this.width);
    dest.writeInt(this.height);
    dest.writeDoubleArray(this.groupPoints);
    dest.writeDoubleArray(this.groupType);
    dest.writeString(this.groupPointsStr);
    dest.writeString(this.groupTypeStr);
    dest.writeString(this.templateImagePath);
    dest.writeString(this.stickerImagePathStr);
    dest.writeString(this.transformMatrixStr);
    dest.writeString(this.adjustedPointsStr);
}
 
Example 3
Source File: MagicPhotoEntity.java    From PLDroidShortVideo with Apache License 2.0 5 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeValue(this.id);
    dest.writeInt(this.width);
    dest.writeInt(this.height);
    dest.writeDoubleArray(this.groupPoints);
    dest.writeDoubleArray(this.groupType);
    dest.writeString(this.groupPointsStr);
    dest.writeString(this.groupTypeStr);
    dest.writeString(this.imagePath);
}
 
Example 4
Source File: HotGeoBean.java    From iBeebo with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    // TODO Auto-generated method stub

    dest.writeString(type);
    dest.writeDoubleArray(coordinates);
}
 
Example 5
Source File: HotGeoBean.java    From iBeebo with GNU General Public License v3.0 5 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    // TODO Auto-generated method stub

    dest.writeString(type);
    dest.writeDoubleArray(coordinates);
}
 
Example 6
Source File: PrimitiveArrayParcelable.java    From android-parcelable-intellij-plugin with Apache License 2.0 5 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeIntArray(this.a);
    dest.writeDoubleArray(this.b);
    dest.writeStringArray(this.c);
    dest.writeFloatArray(this.e);
    dest.writeBooleanArray(this.f);
    dest.writeByteArray(this.g);
}
 
Example 7
Source File: StaticAdapters.java    From paperparcel with Apache License 2.0 4 votes vote down vote up
@Override public void writeToParcel(@Nullable double[] value, @NonNull Parcel dest, int flags) {
  dest.writeDoubleArray(value);
}
 
Example 8
Source File: GeoBean.java    From iBeebo with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(type);
    dest.writeDoubleArray(coordinates);
}
 
Example 9
Source File: GeoModel.java    From BlackLight with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
	dest.writeString(type);
	dest.writeDoubleArray(coordinates);
}
 
Example 10
Source File: Position.java    From OpenMapKitAndroid with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeDoubleArray(this.mStorage);
}
 
Example 11
Source File: GeoBean.java    From iBeebo with GNU General Public License v3.0 4 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(type);
    dest.writeDoubleArray(coordinates);
}