Android examples for android.os:Parcel
write String from Parcel
//package com.java2s; import android.os.Parcel; public class Main { public static void writeString(Parcel dest, String value) { dest.writeByte((byte) (value != null ? 1 : 0)); if (value != null) dest.writeString(value);/* ww w . j a v a 2 s. c o m*/ } }