ViewGroupManager 与 SimpleViewManager

ViewGroupManager vs SimpleViewManager

在 react-native 中,ViewGroupManager 和 SimpleViewManager 之间的 deff* 是什么?

谢谢。

我认为答案与此完全相同:

Difference between View and ViewGroup in Android

SimpleViewManager 扩展 View

ViewGroupManager 扩展 ViewGroup

我从 the above answer 复制了下图来解释它们的区别:

所以为了简化事情,看起来只要你有一个非常相似的原生 UI 组件,那么你就想使用 SimpleViewManager,但如果你想要 children在 parents 内,您需要使用 ViewGroupManager.