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


Java Parcel.writeSparseArray方法代碼示例

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


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

示例1: writeToParcel

import android.os.Parcel; //導入方法依賴的package包/類
@Override
public void writeToParcel(Parcel parcel, int i) {
    anchorViewState.writeToParcel(parcel, i);
    parcel.writeSparseArray(orientationCacheMap);
    parcel.writeSparseArray(cacheNormalizationPositionMap);
    parcel.writeInt(orientation);
}
 
開發者ID:sathishmscict,項目名稱:ChipsLayoutManager,代碼行數:8,代碼來源:ParcelableContainer.java

示例2: writeToParcel

import android.os.Parcel; //導入方法依賴的package包/類
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(this.packageName);
    dest.writeString(this.apkPath);
    dest.writeString(this.libPath);
    dest.writeByte(this.dependSystem ? (byte) 1 : (byte) 0);
    dest.writeInt(this.appId);
    //noinspection unchecked
    dest.writeSparseArray((SparseArray) this.userState);
    dest.writeByte(this.artFlyMode ? (byte) 1 : (byte) 0);
}
 
開發者ID:7763sea,項目名稱:VirtualHook,代碼行數:12,代碼來源:PackageSetting.java

示例3: writeToParcel

import android.os.Parcel; //導入方法依賴的package包/類
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeParcelable(parcelableKey, flags);
    // noinspection unchecked
    SparseArray<Object> sparseArray = (SparseArray) viewHierarchyState;
    dest.writeSparseArray(sparseArray);
    dest.writeByte(bundle != null ? (byte) 0x01 : 0x00);
    if(bundle != null) {
        dest.writeParcelable(bundle, 0);
    }
}
 
開發者ID:Zhuinden,項目名稱:simple-stack,代碼行數:12,代碼來源:ParcelledState.java

示例4: writeToParcel

import android.os.Parcel; //導入方法依賴的package包/類
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(this.packageName);
    dest.writeString(this.apkPath);
    dest.writeString(this.libPath);
    dest.writeByte(this.dependSystem ? (byte) 1 : (byte) 0);
    dest.writeInt(this.appId);
    //noinspection unchecked
    dest.writeSparseArray((SparseArray) this.userState);
    dest.writeByte(this.skipDexOpt ? (byte) 1 : (byte) 0);
}
 
開發者ID:coding-dream,項目名稱:TPlayer,代碼行數:12,代碼來源:PackageSetting.java

示例5: writeToParcel

import android.os.Parcel; //導入方法依賴的package包/類
public void writeToParcel(Parcel dest, int flags) {
    dest.writeSparseArray(toSparseArray());
}
 
開發者ID:JackChan1999,項目名稱:boohee_v5.6,代碼行數:4,代碼來源:ParcelableSparseIntArray.java

示例6: writeToParcel

import android.os.Parcel; //導入方法依賴的package包/類
@Override
public void writeToParcel(Parcel out, int flags) {
    super.writeToParcel(out, flags);
    out.writeSparseArray(childrenStates);
    out.writeInt(mCurrentSearchViewState.toInt());
}
 
開發者ID:aliumujib,項目名稱:Nibo,代碼行數:7,代碼來源:NiboPlacesAutoCompleteSearchView.java

示例7: writeToParcel

import android.os.Parcel; //導入方法依賴的package包/類
@Override
public void writeToParcel(Parcel dest, int flags) {
    dest.writeSparseArray(toSparseArray());
}
 
開發者ID:Shmilyz,項目名稱:Swap,代碼行數:5,代碼來源:ParcelableSparseIntArray.java


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