diff --git a/docs/native-components-android.md b/docs/native-components-android.md index 247efec57d6..77c7287e5bb 100644 --- a/docs/native-components-android.md +++ b/docs/native-components-android.md @@ -13,9 +13,9 @@ For this example we are going to walk through the implementation requirements to Native views are created and manipulated by extending `ViewManager` or more commonly `SimpleViewManager` . A `SimpleViewManager` is convenient in this case because it applies common properties such as background color, opacity, and Flexbox layout. -These subclasses are essentially singletons - only one instance of each is created by the bridge. They vend native views to the `NativeViewHierarchyManager`, which delegates back to them to set and update the properties of the views as necessary. The `ViewManagers` are also typically the delegates for the views, sending events back to JavaScript via the bridge. +These subclasses are essentially singletons - only one instance of each is created by the bridge. They send native views to the `NativeViewHierarchyManager`, which delegates back to them to set and update the properties of the views as necessary. The `ViewManagers` are also typically the delegates for the views, sending events back to JavaScript via the bridge. -To vend a view: +To send a view: 1. Create the ViewManager subclass. 2. Implement the `createViewInstance` method