react-native-navigation的迁移库

TopBarBackgroundViewCreator.java 665B

123456789101112131415161718192021
  1. package com.reactnativenavigation.views.topbar;
  2. import android.app.Activity;
  3. import com.facebook.react.ReactInstanceManager;
  4. import com.reactnativenavigation.viewcontrollers.ReactViewCreator;
  5. public class TopBarBackgroundViewCreator implements ReactViewCreator {
  6. protected ReactInstanceManager instanceManager;
  7. public TopBarBackgroundViewCreator(ReactInstanceManager instanceManager) {
  8. this.instanceManager = instanceManager;
  9. }
  10. @Override
  11. public TopBarBackgroundView create(Activity activity, String componentId, String componentName) {
  12. return new TopBarBackgroundView(activity, instanceManager, componentId, componentName);
  13. }
  14. }