react-native-navigation的迁移库

ReactViewHacks.java 554B

1234567891011121314
  1. package com.reactnativenavigation.react;
  2. import com.facebook.react.views.image.ReactImageView;
  3. import com.reactnativenavigation.utils.ReflectionUtils;
  4. public class ReactViewHacks {
  5. // Hack to prevent Image flicker until https://github.com/facebook/react-native/issues/10194 is fixed
  6. public static void disableReactImageViewRemoteImageFadeInAnimation(ReactImageView reactImageView) {
  7. reactImageView.setFadeDuration(0);
  8. ReflectionUtils.setField(reactImageView, "mIsDirty", true);
  9. reactImageView.maybeUpdateView();
  10. }
  11. }