diff options
author | Joel Galenson <jgalenson@google.com> | 2019-01-31 08:19:21 -0800 |
---|---|---|
committer | Joel Galenson <jgalenson@google.com> | 2019-01-31 08:19:21 -0800 |
commit | 6ecec01e7bace6c1dd8b375f259eb28c91093336 (patch) | |
tree | 5203f152e045a4b27c5ba7f2ac23918572763870 | |
parent | b73db4c988f5a9e3a41f782fc3902c295c5f8abe (diff) | |
download | packages_apps_Settings-6ecec01e7bace6c1dd8b375f259eb28c91093336.tar.gz packages_apps_Settings-6ecec01e7bace6c1dd8b375f259eb28c91093336.tar.bz2 packages_apps_Settings-6ecec01e7bace6c1dd8b375f259eb28c91093336.zip |
Update call to use new method name.
Test: See correct shadow behavior when scrolling app info.
Change-Id: Ib6452f5caa42600330b934c50c30a42f303710ae
-rw-r--r-- | src/com/android/settings/widget/EntityHeaderController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/widget/EntityHeaderController.java b/src/com/android/settings/widget/EntityHeaderController.java index 567217883a..8e31290577 100644 --- a/src/com/android/settings/widget/EntityHeaderController.java +++ b/src/com/android/settings/widget/EntityHeaderController.java @@ -322,7 +322,7 @@ public class EntityHeaderController { Utils.getColorAttrDefaultColor(activity, android.R.attr.colorPrimaryDark))); actionBar.setElevation(0); if (mRecyclerView != null && mLifecycle != null) { - ActionBarShadowController.attachToRecyclerView(mActivity, mLifecycle, mRecyclerView); + ActionBarShadowController.attachToView(mActivity, mLifecycle, mRecyclerView); } return this; |