| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
public void addChild(XrEntityHolder<?> child) {Do you ever set the parent of this child? Maybe want to link `setParent` in this function to make sure no one misses that.
mHandler.removeCallbacks(mClickTimeoutRunnable);nit: Consider extracting this to a helper method since it's used here, in the CANCEL branch, and at the end of the UP branch.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
updateMovableComponent(movable, scaleInZ);If `setMovable(true, ...)` is called after a custom handler has been configured via `setCustomMovable()`, it will currently reuse `mCustomMoveHandler` rather than creating a system movable.
If the intention of `setMovable` is to strictly use the standard system movable, consider clearing `mCustomMoveHandler = null` here. If this behavior is intentional and expected, consider adding a brief comment to clarify it.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |