在React native中,我们将组件创建为:-
export default class MyComponent extends Component {
render() {
return (
<View >
</View>
)
}
}
并进行Android构建,但是当其在android OS上运行时 组件将转换为哪个android组件(片段,视图 或ViewGroup)。
答案 0 :(得分:1)
基本上在android中调用单个活动(MainActivity)和 在其中的单个视图ReactRootView呈现了类似片段的内容 在活动中呈现。所有React本机组件都在单个内部渲染 ReactRootView。
有关更多详细信息:- https://facebook.github.io/react-native/docs/integration-with-existing-apps