public class NativeAnimatedModule extends ReactContextBaseJavaModule implements OnBatchCompleteListener, LifecycleEventListener
NativeAnimatedNodesManager
. Since all the methods from
NativeAnimatedNodesManager
need to be called from the UI thread, we we create a queue of
animated graph operations that is then enqueued to be executed in the UI Thread at the end of the
batch of JS->native calls (similarily to how it's handled in UIManagerModule
). This
isolates us from the problems that may be caused by concurrent updates of animated graph while UI
thread is "executing" the animation loop.BaseJavaModule.JavaMethod, BaseJavaModule.SyncJavaHook
NativeModule.NativeMethod, NativeModule.SyncNativeHook
METHOD_TYPE_ASYNC, METHOD_TYPE_PROMISE, METHOD_TYPE_SYNC
Constructor and Description |
---|
NativeAnimatedModule(ReactApplicationContext reactContext) |
Modifier and Type | Method and Description |
---|---|
void |
connectAnimatedNodes(int parentNodeTag,
int childNodeTag) |
void |
connectAnimatedNodeToView(int animatedNodeTag,
int viewTag) |
void |
createAnimatedNode(int tag,
ReadableMap config) |
void |
disconnectAnimatedNodeFromView(int animatedNodeTag,
int viewTag) |
void |
disconnectAnimatedNodes(int parentNodeTag,
int childNodeTag) |
void |
dropAnimatedNode(int tag) |
java.lang.String |
getName() |
void |
initialize()
This is called at the end of
CatalystApplicationFragment#createCatalystInstance()
after the CatalystInstance has been created, in order to initialize NativeModules that require
the CatalystInstance or JS modules. |
void |
onBatchComplete() |
void |
onHostDestroy()
Called when host activity receives destroy event (e.g.
|
void |
onHostPause()
Called when host activity receives pause event (e.g.
|
void |
onHostResume()
Called when host activity receives resume event (e.g.
|
void |
setAnimatedNodeValue(int tag,
double value) |
void |
startAnimatingNode(int animationId,
int animatedNodeTag,
ReadableMap animationConfig,
Callback endCallback) |
void |
startListeningToAnimatedNodeValue(int tag) |
void |
stopAnimation(int animationId) |
void |
stopListeningToAnimatedNodeValue(int tag) |
getCurrentActivity, getReactApplicationContext
canOverrideExistingModule, getConstants, getMethods, getSyncHooks, onCatalystInstanceDestroy, onReactBridgeInitialized, supportsWebWorkers, writeConstantsField
public NativeAnimatedModule(ReactApplicationContext reactContext)
public void initialize()
NativeModule
CatalystApplicationFragment#createCatalystInstance()
after the CatalystInstance has been created, in order to initialize NativeModules that require
the CatalystInstance or JS modules.initialize
in interface NativeModule
initialize
in class BaseJavaModule
public void onBatchComplete()
onBatchComplete
in interface OnBatchCompleteListener
public void onHostResume()
LifecycleEventListener
Activity#onResume
. Always called
for the most current activity.onHostResume
in interface LifecycleEventListener
public void onHostPause()
LifecycleEventListener
Activity#onPause
. Always called
for the most current activity.onHostPause
in interface LifecycleEventListener
public void onHostDestroy()
LifecycleEventListener
Activity#onDestroy
. Only called
for the last React activity to be destroyed.onHostDestroy
in interface LifecycleEventListener
public java.lang.String getName()
getName
in interface NativeModule
require()
this module
from javascript.public void createAnimatedNode(int tag, ReadableMap config)
public void startListeningToAnimatedNodeValue(int tag)
public void stopListeningToAnimatedNodeValue(int tag)
public void dropAnimatedNode(int tag)
public void setAnimatedNodeValue(int tag, double value)
public void startAnimatingNode(int animationId, int animatedNodeTag, ReadableMap animationConfig, Callback endCallback)
public void stopAnimation(int animationId)
public void connectAnimatedNodes(int parentNodeTag, int childNodeTag)
public void disconnectAnimatedNodes(int parentNodeTag, int childNodeTag)
public void connectAnimatedNodeToView(int animatedNodeTag, int viewTag)
public void disconnectAnimatedNodeFromView(int animatedNodeTag, int viewTag)