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

Commit 031eef2f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Expose RenderNode#getUniqueId() as View#getUniqueDrawingId()"

parents ae697dcd 752828f9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -49074,6 +49074,7 @@ package android.view {
    method public float getTranslationX();
    method public float getTranslationY();
    method public float getTranslationZ();
    method public long getUniqueDrawingId();
    method public int getVerticalFadingEdgeLength();
    method public int getVerticalScrollbarPosition();
    method public int getVerticalScrollbarWidth();
+10 −0
Original line number Diff line number Diff line
@@ -23544,6 +23544,16 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
        return mID;
    }
    /**
     * Get the identifier used for this view by the drawing system.
     *
     * @see RenderNode#getUniqueId()
     * @return A long that uniquely identifies this view's drawing component
     */
    public long getUniqueDrawingId() {
        return mRenderNode.getUniqueId();
    }
    /**
     * Returns this view's tag.
     *