diff options
-rw-r--r-- | packages/SystemUI/animation/lib/src/com/android/systemui/animation/ViewUIComponent.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/SystemUI/animation/lib/src/com/android/systemui/animation/ViewUIComponent.java b/packages/SystemUI/animation/lib/src/com/android/systemui/animation/ViewUIComponent.java index cec740ad899b..0317d5f095a1 100644 --- a/packages/SystemUI/animation/lib/src/com/android/systemui/animation/ViewUIComponent.java +++ b/packages/SystemUI/animation/lib/src/com/android/systemui/animation/ViewUIComponent.java @@ -57,6 +57,14 @@ public class ViewUIComponent implements UIComponent { mView = view; } + /** + * @return the view wrapped by this UI component. + * @hide + */ + public View getView() { + return mView; + } + @Override public float getAlpha() { return mView.getAlpha(); |