當前位置: 首頁>>代碼示例>>Java>>正文


Java Parcel.readArray方法代碼示例

本文整理匯總了Java中android.os.Parcel.readArray方法的典型用法代碼示例。如果您正苦於以下問題:Java Parcel.readArray方法的具體用法?Java Parcel.readArray怎麽用?Java Parcel.readArray使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.os.Parcel的用法示例。


在下文中一共展示了Parcel.readArray方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: HistoryData

import android.os.Parcel; //導入方法依賴的package包/類
protected HistoryData(Parcel in) {
    this.age = in.readInt();
    this.id = in.readLong();
    this.testShort = (short) in.readInt();
    this.testByte = in.readByte();
    this.testBoolean = in.readByte() != 0;
    this.testFloat = in.readFloat();
    this.testDouble = in.readDouble();
    this.testChar = (char) in.readInt();
    this.testLONG = (Long) in.readValue(Long.class.getClassLoader());
    this.testDOUBLE = (Double) in.readValue(Double.class.getClassLoader());
    this.testCharacter = (Character) in.readSerializable();
    this.testBOOLEAN = (Boolean) in.readValue(Boolean.class.getClassLoader());
    this.testSHORT = (Short) in.readValue(Short.class.getClassLoader());
    this.name = in.readString();
    this.data = in.readParcelable(ResultData.class.getClassLoader());
    this.datas = in.createTypedArrayList(ResultData.CREATOR);
    this.testArrayResultData = in.createTypedArray(ResultData.CREATOR);
    this.testArrayInt = in.createIntArray();
    this.testArrayInteger = (Integer[]) in.readArray(Integer[].class.getClassLoader());
}
 
開發者ID:LightSun,項目名稱:data-mediator,代碼行數:22,代碼來源:HistoryData.java

示例2: LogItem

import android.os.Parcel; //導入方法依賴的package包/類
public LogItem(Parcel in) {
    mArgs = in.readArray(Object.class.getClassLoader());
    mMessage = in.readString();
    mRessourceId = in.readInt();
    mLevel = VpnStatus.LogLevel.getEnumByValue(in.readInt());
    mVerbosityLevel = in.readInt();
    logtime = in.readLong();
}
 
開發者ID:akashdeepsingh9988,項目名稱:Cybernet-VPN,代碼行數:9,代碼來源:LogItem.java


注:本文中的android.os.Parcel.readArray方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。