Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5a25992 authored by Anthony Chen's avatar Anthony Chen Committed by android-build-merger
Browse files

Merge "Merge "Fix bug where RemoteViews addView is backwards." into oc-dr1-dev...

Merge "Merge "Fix bug where RemoteViews addView is backwards." into oc-dr1-dev am: 25c84b33" into oc-dr1-dev-plus-aosp
am: 7730f5ad

Change-Id: Ia9dcd84cbd7c57f79e92fc1a90655d4d5fed936b
parents 1ff9422a 7730f5ad
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1578,12 +1578,14 @@ public class RemoteViews implements Parcelable, Filter {
        ViewGroupActionAdd(Parcel parcel, BitmapCache bitmapCache, ApplicationInfo info,
                int depth) {
            viewId = parcel.readInt();
            mIndex = parcel.readInt();
            mNestedViews = new RemoteViews(parcel, bitmapCache, info, depth);
        }

        public void writeToParcel(Parcel dest, int flags) {
            dest.writeInt(VIEW_GROUP_ACTION_ADD_TAG);
            dest.writeInt(viewId);
            dest.writeInt(mIndex);
            mNestedViews.writeToParcel(dest, flags);
        }