Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | package android.view; |
| 17 | |
Chet Haase | ce08ce5 | 2013-06-06 07:27:53 -0700 | [diff] [blame] | 18 | import android.animation.LayoutTransition; |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 19 | import android.annotation.NonNull; |
Mathew Inwood | a570dee | 2018-08-17 14:56:00 +0100 | [diff] [blame] | 20 | import android.annotation.UnsupportedAppUsage; |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 21 | import android.content.Context; |
| 22 | import android.graphics.Canvas; |
| 23 | import android.graphics.Rect; |
| 24 | import android.graphics.drawable.Drawable; |
| 25 | |
| 26 | import java.util.ArrayList; |
| 27 | |
| 28 | /** |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 29 | * An overlay is an extra layer that sits on top of a View (the "host view") |
| 30 | * which is drawn after all other content in that view (including children, |
| 31 | * if the view is a ViewGroup). Interaction with the overlay layer is done |
| 32 | * by adding and removing drawables. |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 33 | * |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 34 | * <p>An overlay requested from a ViewGroup is of type {@link ViewGroupOverlay}, |
| 35 | * which also supports adding and removing views.</p> |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 36 | * |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 37 | * @see View#getOverlay() View.getOverlay() |
| 38 | * @see ViewGroup#getOverlay() ViewGroup.getOverlay() |
| 39 | * @see ViewGroupOverlay |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 40 | */ |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 41 | public class ViewOverlay { |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 42 | |
| 43 | /** |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 44 | * The actual container for the drawables (and views, if it's a ViewGroupOverlay). |
| 45 | * All of the management and rendering details for the overlay are handled in |
| 46 | * OverlayViewGroup. |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 47 | */ |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 48 | OverlayViewGroup mOverlayViewGroup; |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 49 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 50 | ViewOverlay(Context context, View hostView) { |
| 51 | mOverlayViewGroup = new OverlayViewGroup(context, hostView); |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 54 | /** |
| 55 | * Used internally by View and ViewGroup to handle drawing and invalidation |
| 56 | * of the overlay |
| 57 | * @return |
| 58 | */ |
Mathew Inwood | a570dee | 2018-08-17 14:56:00 +0100 | [diff] [blame] | 59 | @UnsupportedAppUsage |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 60 | ViewGroup getOverlayView() { |
| 61 | return mOverlayViewGroup; |
| 62 | } |
| 63 | |
| 64 | /** |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 65 | * Adds a {@link Drawable} to the overlay. The bounds of the drawable should be relative to |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 66 | * the host view. Any drawable added to the overlay should be removed when it is no longer |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 67 | * needed or no longer visible. Adding an already existing {@link Drawable} |
| 68 | * is a no-op. Passing <code>null</code> parameter will result in an |
| 69 | * {@link IllegalArgumentException} being thrown. |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 70 | * |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 71 | * @param drawable The {@link Drawable} to be added to the overlay. This drawable will be |
| 72 | * drawn when the view redraws its overlay. {@link Drawable}s will be drawn in the order that |
| 73 | * they were added. |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 74 | * @see #remove(Drawable) |
| 75 | */ |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 76 | public void add(@NonNull Drawable drawable) { |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 77 | mOverlayViewGroup.add(drawable); |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 80 | /** |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 81 | * Removes the specified {@link Drawable} from the overlay. Removing a {@link Drawable} that was |
| 82 | * not added with {@link #add(Drawable)} is a no-op. Passing <code>null</code> parameter will |
| 83 | * result in an {@link IllegalArgumentException} being thrown. |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 84 | * |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 85 | * @param drawable The {@link Drawable} to be removed from the overlay. |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 86 | * @see #add(Drawable) |
| 87 | */ |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 88 | public void remove(@NonNull Drawable drawable) { |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 89 | mOverlayViewGroup.remove(drawable); |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 90 | } |
| 91 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 92 | /** |
| 93 | * Removes all content from the overlay. |
| 94 | */ |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 95 | public void clear() { |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 96 | mOverlayViewGroup.clear(); |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Mathew Inwood | a570dee | 2018-08-17 14:56:00 +0100 | [diff] [blame] | 99 | @UnsupportedAppUsage |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 100 | boolean isEmpty() { |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 101 | return mOverlayViewGroup.isEmpty(); |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 102 | } |
| 103 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 104 | /** |
| 105 | * OverlayViewGroup is a container that View and ViewGroup use to host |
| 106 | * drawables and views added to their overlays ({@link ViewOverlay} and |
| 107 | * {@link ViewGroupOverlay}, respectively). Drawables are added to the overlay |
| 108 | * via the add/remove methods in ViewOverlay, Views are added/removed via |
| 109 | * ViewGroupOverlay. These drawable and view objects are |
| 110 | * drawn whenever the view itself is drawn; first the view draws its own |
| 111 | * content (and children, if it is a ViewGroup), then it draws its overlay |
| 112 | * (if it has one). |
| 113 | * |
| 114 | * <p>Besides managing and drawing the list of drawables, this class serves |
| 115 | * two purposes: |
| 116 | * (1) it noops layout calls because children are absolutely positioned and |
| 117 | * (2) it forwards all invalidation calls to its host view. The invalidation |
| 118 | * redirect is necessary because the overlay is not a child of the host view |
| 119 | * and invalidation cannot therefore follow the normal path up through the |
| 120 | * parent hierarchy.</p> |
| 121 | * |
| 122 | * @see View#getOverlay() |
| 123 | * @see ViewGroup#getOverlay() |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 124 | */ |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 125 | static class OverlayViewGroup extends ViewGroup { |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 126 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 127 | /** |
| 128 | * The View for which this is an overlay. Invalidations of the overlay are redirected to |
| 129 | * this host view. |
| 130 | */ |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 131 | final View mHostView; |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 132 | |
| 133 | /** |
| 134 | * The set of drawables to draw when the overlay is rendered. |
| 135 | */ |
| 136 | ArrayList<Drawable> mDrawables = null; |
| 137 | |
| 138 | OverlayViewGroup(Context context, View hostView) { |
| 139 | super(context); |
| 140 | mHostView = hostView; |
| 141 | mAttachInfo = mHostView.mAttachInfo; |
Chris Craik | 2180ba7 | 2014-12-01 17:53:34 -0800 | [diff] [blame] | 142 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 143 | mRight = hostView.getWidth(); |
| 144 | mBottom = hostView.getHeight(); |
Chris Craik | 2180ba7 | 2014-12-01 17:53:34 -0800 | [diff] [blame] | 145 | // pass right+bottom directly to RenderNode, since not going through setters |
| 146 | mRenderNode.setLeftTopRightBottom(0, 0, mRight, mBottom); |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 147 | } |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 148 | |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 149 | public void add(@NonNull Drawable drawable) { |
| 150 | if (drawable == null) { |
| 151 | throw new IllegalArgumentException("drawable must be non-null"); |
| 152 | } |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 153 | if (mDrawables == null) { |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 154 | mDrawables = new ArrayList<>(); |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 155 | } |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 156 | if (!mDrawables.contains(drawable)) { |
| 157 | // Make each drawable unique in the overlay; can't add it more than once |
| 158 | mDrawables.add(drawable); |
| 159 | invalidate(drawable.getBounds()); |
| 160 | drawable.setCallback(this); |
Chet Haase | 9c17fe6 | 2013-03-22 17:05:55 -0700 | [diff] [blame] | 161 | } |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 162 | } |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 163 | |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 164 | public void remove(@NonNull Drawable drawable) { |
| 165 | if (drawable == null) { |
| 166 | throw new IllegalArgumentException("drawable must be non-null"); |
| 167 | } |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 168 | if (mDrawables != null) { |
| 169 | mDrawables.remove(drawable); |
| 170 | invalidate(drawable.getBounds()); |
| 171 | drawable.setCallback(null); |
| 172 | } |
| 173 | } |
| 174 | |
Alan Viverette | 39de9bf | 2013-12-11 13:15:47 -0800 | [diff] [blame] | 175 | @Override |
Alan Viverette | f6d87ec | 2016-03-11 10:09:14 -0500 | [diff] [blame] | 176 | protected boolean verifyDrawable(@NonNull Drawable who) { |
Alan Viverette | 39de9bf | 2013-12-11 13:15:47 -0800 | [diff] [blame] | 177 | return super.verifyDrawable(who) || (mDrawables != null && mDrawables.contains(who)); |
| 178 | } |
| 179 | |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 180 | public void add(@NonNull View child) { |
| 181 | if (child == null) { |
| 182 | throw new IllegalArgumentException("view must be non-null"); |
| 183 | } |
| 184 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 185 | if (child.getParent() instanceof ViewGroup) { |
| 186 | ViewGroup parent = (ViewGroup) child.getParent(); |
Chet Haase | face742 | 2013-04-15 15:15:59 -0700 | [diff] [blame] | 187 | if (parent != mHostView && parent.getParent() != null && |
| 188 | parent.mAttachInfo != null) { |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 189 | // Moving to different container; figure out how to position child such that |
| 190 | // it is in the same location on the screen |
| 191 | int[] parentLocation = new int[2]; |
| 192 | int[] hostViewLocation = new int[2]; |
| 193 | parent.getLocationOnScreen(parentLocation); |
| 194 | mHostView.getLocationOnScreen(hostViewLocation); |
| 195 | child.offsetLeftAndRight(parentLocation[0] - hostViewLocation[0]); |
| 196 | child.offsetTopAndBottom(parentLocation[1] - hostViewLocation[1]); |
| 197 | } |
| 198 | parent.removeView(child); |
Chet Haase | ce08ce5 | 2013-06-06 07:27:53 -0700 | [diff] [blame] | 199 | if (parent.getLayoutTransition() != null) { |
| 200 | // LayoutTransition will cause the child to delay removal - cancel it |
| 201 | parent.getLayoutTransition().cancel(LayoutTransition.DISAPPEARING); |
| 202 | } |
| 203 | // fail-safe if view is still attached for any reason |
| 204 | if (child.getParent() != null) { |
| 205 | child.mParent = null; |
| 206 | } |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 207 | } |
| 208 | super.addView(child); |
| 209 | } |
| 210 | |
Kirill Grouchnikov | b4b939c | 2016-03-08 10:37:06 -0500 | [diff] [blame] | 211 | public void remove(@NonNull View view) { |
| 212 | if (view == null) { |
| 213 | throw new IllegalArgumentException("view must be non-null"); |
| 214 | } |
| 215 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 216 | super.removeView(view); |
| 217 | } |
| 218 | |
| 219 | public void clear() { |
| 220 | removeAllViews(); |
Chet Haase | d8b0b23 | 2013-05-20 06:46:11 -0700 | [diff] [blame] | 221 | if (mDrawables != null) { |
Kirill Grouchnikov | 22351c3 | 2016-03-14 08:34:36 -0400 | [diff] [blame] | 222 | for (Drawable drawable : mDrawables) { |
| 223 | drawable.setCallback(null); |
| 224 | } |
Chet Haase | d8b0b23 | 2013-05-20 06:46:11 -0700 | [diff] [blame] | 225 | mDrawables.clear(); |
| 226 | } |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | boolean isEmpty() { |
| 230 | if (getChildCount() == 0 && |
| 231 | (mDrawables == null || mDrawables.size() == 0)) { |
| 232 | return true; |
| 233 | } |
| 234 | return false; |
| 235 | } |
| 236 | |
| 237 | @Override |
Alan Viverette | f6d87ec | 2016-03-11 10:09:14 -0500 | [diff] [blame] | 238 | public void invalidateDrawable(@NonNull Drawable drawable) { |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 239 | invalidate(drawable.getBounds()); |
| 240 | } |
| 241 | |
| 242 | @Override |
| 243 | protected void dispatchDraw(Canvas canvas) { |
Chris Craik | 36d9a6d | 2017-01-12 19:17:19 -0800 | [diff] [blame] | 244 | /* |
| 245 | * The OverlayViewGroup doesn't draw with a DisplayList, because |
| 246 | * draw(Canvas, View, long) is never called on it. This is fine, since it doesn't need |
| 247 | * RenderNode/DisplayList features, and can just draw into the owner's Canvas. |
| 248 | * |
| 249 | * This means that we need to insert reorder barriers manually though, so that children |
| 250 | * of the OverlayViewGroup can cast shadows and Z reorder with each other. |
| 251 | */ |
| 252 | canvas.insertReorderBarrier(); |
| 253 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 254 | super.dispatchDraw(canvas); |
Chris Craik | 36d9a6d | 2017-01-12 19:17:19 -0800 | [diff] [blame] | 255 | |
| 256 | canvas.insertInorderBarrier(); |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 257 | final int numDrawables = (mDrawables == null) ? 0 : mDrawables.size(); |
| 258 | for (int i = 0; i < numDrawables; ++i) { |
| 259 | mDrawables.get(i).draw(canvas); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | @Override |
| 264 | protected void onLayout(boolean changed, int l, int t, int r, int b) { |
| 265 | // Noop: children are positioned absolutely |
| 266 | } |
| 267 | |
| 268 | /* |
| 269 | The following invalidation overrides exist for the purpose of redirecting invalidation to |
| 270 | the host view. The overlay is not parented to the host view (since a View cannot be a |
| 271 | parent), so the invalidation cannot proceed through the normal parent hierarchy. |
| 272 | There is a built-in assumption that the overlay exactly covers the host view, therefore |
| 273 | the invalidation rectangles received do not need to be adjusted when forwarded to |
| 274 | the host view. |
| 275 | */ |
| 276 | |
| 277 | @Override |
| 278 | public void invalidate(Rect dirty) { |
| 279 | super.invalidate(dirty); |
| 280 | if (mHostView != null) { |
| 281 | mHostView.invalidate(dirty); |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | @Override |
| 286 | public void invalidate(int l, int t, int r, int b) { |
| 287 | super.invalidate(l, t, r, b); |
| 288 | if (mHostView != null) { |
| 289 | mHostView.invalidate(l, t, r, b); |
| 290 | } |
| 291 | } |
| 292 | |
| 293 | @Override |
| 294 | public void invalidate() { |
| 295 | super.invalidate(); |
| 296 | if (mHostView != null) { |
| 297 | mHostView.invalidate(); |
| 298 | } |
| 299 | } |
| 300 | |
Chris Craik | 3f06c6d | 2017-01-09 18:19:48 +0000 | [diff] [blame] | 301 | /** @hide */ |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 302 | @Override |
Chris Craik | 3f06c6d | 2017-01-09 18:19:48 +0000 | [diff] [blame] | 303 | public void invalidate(boolean invalidateCache) { |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 304 | super.invalidate(invalidateCache); |
| 305 | if (mHostView != null) { |
| 306 | mHostView.invalidate(invalidateCache); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | @Override |
| 311 | void invalidateViewProperty(boolean invalidateParent, boolean forceRedraw) { |
| 312 | super.invalidateViewProperty(invalidateParent, forceRedraw); |
| 313 | if (mHostView != null) { |
| 314 | mHostView.invalidateViewProperty(invalidateParent, forceRedraw); |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | @Override |
| 319 | protected void invalidateParentCaches() { |
| 320 | super.invalidateParentCaches(); |
| 321 | if (mHostView != null) { |
| 322 | mHostView.invalidateParentCaches(); |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | @Override |
| 327 | protected void invalidateParentIfNeeded() { |
| 328 | super.invalidateParentIfNeeded(); |
| 329 | if (mHostView != null) { |
| 330 | mHostView.invalidateParentIfNeeded(); |
| 331 | } |
| 332 | } |
| 333 | |
Chris Craik | 49e6c739 | 2014-03-31 12:34:11 -0700 | [diff] [blame] | 334 | @Override |
Chris Craik | 9de95db | 2017-01-18 17:59:23 -0800 | [diff] [blame] | 335 | public void onDescendantInvalidated(@NonNull View child, @NonNull View target) { |
Chris Craik | bc44b1a | 2017-04-25 13:21:36 -0700 | [diff] [blame] | 336 | if (mHostView != null) { |
| 337 | if (mHostView instanceof ViewGroup) { |
| 338 | // Propagate invalidate through the host... |
| 339 | ((ViewGroup) mHostView).onDescendantInvalidated(mHostView, target); |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 340 | |
Chris Craik | bc44b1a | 2017-04-25 13:21:36 -0700 | [diff] [blame] | 341 | // ...and also this view, since it will hold the descendant, and must later |
| 342 | // propagate the calls to update display lists if dirty |
| 343 | super.onDescendantInvalidated(child, target); |
| 344 | } else { |
| 345 | // Can't use onDescendantInvalidated because host isn't a ViewGroup - fall back |
| 346 | // to invalidating. |
| 347 | invalidate(); |
| 348 | } |
Chet Haase | e4a2d7c | 2013-06-21 17:49:36 -0700 | [diff] [blame] | 349 | } |
Chet Haase | e4a2d7c | 2013-06-21 17:49:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 352 | @Override |
| 353 | public ViewParent invalidateChildInParent(int[] location, Rect dirty) { |
| 354 | if (mHostView != null) { |
| 355 | dirty.offset(location[0], location[1]); |
| 356 | if (mHostView instanceof ViewGroup) { |
| 357 | location[0] = 0; |
| 358 | location[1] = 0; |
| 359 | super.invalidateChildInParent(location, dirty); |
| 360 | return ((ViewGroup) mHostView).invalidateChildInParent(location, dirty); |
| 361 | } else { |
| 362 | invalidate(dirty); |
| 363 | } |
| 364 | } |
| 365 | return null; |
| 366 | } |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 367 | } |
Chet Haase | edf6f4b | 2013-03-26 07:55:30 -0700 | [diff] [blame] | 368 | |
Chet Haase | 91cedf1 | 2013-03-11 07:56:30 -0700 | [diff] [blame] | 369 | } |