commit | 04f0ee69f2bddd54375a2d7d6aa7570cdda0907b | [log] [tgz] |
---|---|---|
author | Todd Lee <leetodd@google.com> | Mon Dec 02 19:02:30 2024 +0000 |
committer | Todd Lee <leetodd@google.com> | Mon Dec 02 19:09:16 2024 +0000 |
tree | c236465b353d47a80f101f11c842f6e7f45e851a | |
parent | 49413be18de1575a438d580239582792b8fc9182 [diff] |
Add method to access the View wrapped by the ViewUIComponent Bug: b/352680005 Test: manual integration with tile launch Flag: NONE trivial Change-Id: I496db1b89ac2a6d6a055c04f14a594dfcf580637
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 cec740a..0317d5f0 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 @@ mView = view; } + /** + * @return the view wrapped by this UI component. + * @hide + */ + public View getView() { + return mView; + } + @Override public float getAlpha() { return mView.getAlpha();