Пример #1
0
 /**
  * Writes the Bundle contents to a Parcel, typically in order for it to be passed through an
  * IBinder connection.
  *
  * @param parcel The parcel to copy this bundle to.
  */
 @Override
 public void writeToParcel(Parcel parcel, int flags) {
   final boolean oldAllowFds = parcel.pushAllowFds(mAllowFds);
   try {
     super.writeToParcelInner(parcel, flags);
   } finally {
     parcel.restoreAllowFds(oldAllowFds);
   }
 }