Searched refs:sAnimationListenerField (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragmentManager.java706 static Field sAnimationListenerField = null; field in class:FragmentManagerImpl
1300 if (sAnimationListenerField == null) {
1301 sAnimationListenerField = Animation.class.getDeclaredField("mListener");
1302 sAnimationListenerField.setAccessible(true);
1304 originalListener = (AnimationListener) sAnimationListenerField.get(animation);

Completed in 249 milliseconds