react-native-navigation的迁移库

IReactView.java 526B

1234567891011121314151617181920212223242526
  1. package com.reactnativenavigation.viewcontrollers;
  2. import android.view.MotionEvent;
  3. import android.view.View;
  4. import com.reactnativenavigation.interfaces.ScrollEventListener;
  5. public interface IReactView extends Destroyable {
  6. boolean isReady();
  7. View asView();
  8. void sendComponentStart();
  9. void sendComponentStop();
  10. void sendOnNavigationButtonPressed(String buttonId);
  11. ScrollEventListener getScrollEventListener();
  12. void dispatchTouchEventToJs(MotionEvent event);
  13. boolean isRendered();
  14. }