React Native Android模块,访问子道具

时间:2018-01-26 12:42:04

标签: android react-native

我正在尝试使用Android native(和Java)编写React Native模块,并且在尝试访问子视图时遇到问题。

现在,当我在设置ReactProp时尝试记录我的孩子时,有0个孩子:

@ReactProp(name = "name")
public void setName(ReactViewGroup view, String name) {
    Log.e("Do we have childs ?", view.getChildCount()+ ""); // 0
}

从javascript方面:

<NativeAndroidComponent name="superName">
  <Text>Hello world</Text> // this one is well displayed on the screen
</NativeAndroidComponent>

我实际上不知道如何从原生方式访问我的props.children

你有什么想法吗?

0 个答案:

没有答案