Available Methods
- readInt ( )
- writeInt ( )
- writeString ( )
- readString ( )
- writeLong ( )
- writeParcelable ( )
- readParcelable ( )
- readLong ( )
- writeByte ( )
- readByte ( )
- obtain ( )
- setDataPosition ( )
- writeTypedList ( )
- writeFloat ( )
- recycle ( )
- readValue ( )
- readFloat ( )
- writeValue ( )
- createTypedArrayList ( )
- writeByteArray ( )
- writeBundle ( )
- readBundle ( )
- writeStringArray ( )
- writeSerializable ( )
- readSerializable ( )
- writeInterfaceToken ( )
- writeList ( )
- writeDouble ( )
- readList ( )
- readException ( )
- writeStringList ( )
- writeIntArray ( )
- readTypedList ( )
- readDouble ( )
- createStringArray ( )
- writeStrongBinder ( )
- createStringArrayList ( )
- createByteArray ( )
- createIntArray ( )
- readIntArray ( )
- createTypedArray ( )
- readByteArray ( )
- writeTypedArray ( )
- readArrayList ( )
- marshall ( )
- readParcelableArray ( )
- unmarshall ( )
- writeBooleanArray ( )
- readStringArray ( )
- readBooleanArray ( )
- writeParcelableArray ( )
- writeMap ( )
- dataPosition ( )
- readStrongBinder ( )
- writeTypedObject ( )
- writeBoolean ( )
- writeCharSequence ( )
- readTypedObject ( )
- writeArray ( )
- readHashMap ( )
- writeNoException ( )
- createFloatArray ( )
- readStringList ( )
- writeSparseArray ( )
- writeLongArray ( )
- enforceInterface ( )
- readCharSequence ( )
- writeFloatArray ( )
- readBoolean ( )
- writeBlob ( )
- readMap ( )
- createBooleanArray ( )
- readArray ( )
- readSparseArray ( )
- createLongArray ( )
- readTypedArray ( )
- readParcelableList ( )
- readFloatArray ( )
- readLongArray ( )
- writeParcelableList ( )
- readSparseBooleanArray ( )
- writeDoubleArray ( )
- dataSize ( )
- writeSparseBooleanArray ( )
- readCharArray ( )
- readBlob ( )
- writePersistableBundle ( )
- dataAvail ( )
- appendFrom ( )
- createDoubleArray ( )
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- android.os.Bundle
- android.content.Context
- java.util.Date
- android.util.Log
- android.content.Intent
- java.io.FileOutputStream
- java.util.Locale
- java.io.ByteArrayOutputStream
- android.os.Build
- java.util.LinkedList
- java.io.FileNotFoundException
- java.lang.reflect.Field
- java.util.UUID
- java.util.Objects
- android.net.Uri
- android.graphics.Bitmap
- java.util.Map.Entry
- android.text.TextUtils
- android.support.annotation.Nullable
- android.content.SharedPreferences
- android.support.annotation.NonNull
- java.math.BigDecimal
Java Code Examples for android.os.Parcel#readCharArray()
The following examples show how to use
android.os.Parcel#readCharArray() .
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 |
@Override public char[] fromParcel(Parcel parcel) { char[] array; int size = parcel.readInt(); if (size == NULL) { array = null; } else { array = new char[size]; parcel.readCharArray(array); } return array; }
Example 2
Source File: Tag.java From TokenAutoComplete with Apache License 2.0 | 4 votes |
private Tag(Parcel in) { char[] temp = new char[1]; in.readCharArray(temp); this.prefix = temp[0]; this.value = in.readString(); }