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

Commit 7730f5ad authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
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
parents a45d75a5 032df0d2
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);
        }