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

The following examples show how to use android.os.Parcel#writeCharArray() . 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: CharArrayParcelConverter.java    From parceler with Apache License 2.0 5 votes vote down vote up
@Override
public void toParcel(char[] array, Parcel parcel) {
    if (array == null) {
        parcel.writeInt(NULL);
    } else {
        parcel.writeInt(array.length);
        parcel.writeCharArray(array);
    }
}
 
Example 2
Source File: StaticAdapters.java    From paperparcel with Apache License 2.0 4 votes vote down vote up
@Override public void writeToParcel(@Nullable char[] value, @NonNull Parcel dest, int flags) {
  dest.writeCharArray(value);
}
 
Example 3
Source File: NonParcelRepository.java    From parceler with Apache License 2.0 4 votes vote down vote up
@Override
public void nullSafeToParcel(Character input, Parcel parcel) {
    parcel.writeCharArray(new char[]{input});
}
 
Example 4
Source File: Tag.java    From TokenAutoComplete with Apache License 2.0 4 votes vote down vote up
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeCharArray(new char[]{prefix});
    dest.writeString(this.value);
}