public class ReactDropdownPickerManager extends ReactPickerManager implements AndroidDropdownPickerManagerInterface<ReactPicker>
NativeModule.NativeMethod| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
REACT_CLASS |
sStateDescriptionMETHOD_TYPE_ASYNC, METHOD_TYPE_PROMISE, METHOD_TYPE_SYNC| Constructor and Description |
|---|
ReactDropdownPickerManager() |
| Modifier and Type | Method and Description |
|---|---|
protected ReactPicker |
createViewInstance(ThemedReactContext reactContext)
Subclasses should return a new View instance of the proper type.
|
protected ViewManagerDelegate<ReactPicker> |
getDelegate()
Override this method and return an instance of
ViewManagerDelegate if the props of the
view managed by this view manager should be set via this delegate. |
java.lang.String |
getName() |
addEventEmitters, onAfterUpdateTransaction, receiveCommand, setColor, setEnabled, setItems, setPrompt, setSelectedcreateShadowNodeInstance, getShadowNodeClass, updateExtraDatagetExportedCustomDirectEventTypeConstants, setAccessibilityActions, setAccessibilityHint, setAccessibilityLabel, setAccessibilityLiveRegion, setAccessibilityRole, setAccessibilityValue, setBackgroundColor, setBorderBottomLeftRadius, setBorderBottomRightRadius, setBorderRadius, setBorderTopLeftRadius, setBorderTopRightRadius, setElevation, setImportantForAccessibility, setNativeId, setOpacity, setRenderToHardwareTexture, setRotation, setScaleX, setScaleY, setTestId, setTransform, setTranslateX, setTranslateY, setViewState, setZIndexcreateShadowNodeInstance, createView, createViewInstance, getCommandsMap, getExportedCustomBubblingEventTypeConstants, getExportedViewConstants, getNativeProps, measure, onDropViewInstance, receiveCommand, setPadding, updateLocalData, updateProperties, updateStatecanOverrideExistingModule, getConstants, hasConstants, initialize, invalidate, onCatalystInstanceDestroyclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitsetColor, setEnabled, setItems, setPrompt, setSelectedpublic static final java.lang.String REACT_CLASS
public java.lang.String getName()
getName in interface NativeModulegetName in class ViewManager<ReactPicker,LayoutShadowNode>protected ReactPicker createViewInstance(ThemedReactContext reactContext)
ViewManagercreateViewInstance in class ViewManager<ReactPicker,LayoutShadowNode>protected ViewManagerDelegate<ReactPicker> getDelegate()
ViewManagerViewManagerDelegate if the props of the
view managed by this view manager should be set via this delegate. The provided instance will
then get calls to ViewManagerDelegate.setProperty(View, String, Object) for every prop
that must be updated and it's the delegate's responsibility to apply these values to the view.
By default this method returns null, which means that the view manager doesn't have
a delegate and the view props should be set internally by the view manager itself.
getDelegate in class ViewManager<ReactPicker,LayoutShadowNode>ViewManagerDelegate if the props of the view managed by this
view manager should be set via this delegate