反应原生自定义视图,没有propType用于原生道具

时间:2015-12-10 15:13:01

标签: android react-native

我正在尝试在react-native中实现本机视图,但在使用道具方面存在一些问题。

我有一个CustomView课,扩展了android.view.ViewViewManager com.facebook.react.uimanager.SimpleViewManager。{/ p>

与React的绑定以这种方式完成:

'use strict';

var { requireNativeComponent, PropTypes } = require('react-native');

var iface = {
    name: 'CustomView',
    propTypes: {
        myProp: PropTypes.string
    },
};
module.exports = requireNativeComponent('CustomView', iface);

当我在我的React应用程序中使用它时,它会抛出一个错误:

`CustomView` has no propType for native prop `CustomView.renderToHardwareTextureAndroid` of native type `boolean`

这是因为SimpleViewManager定义了一些标准属性,如:

@ReactProp(name = PROP_BACKGROUND_COLOR, defaultInt = Color.TRANSPARENT, customType = "Color")
public void setBackgroundColor(T view, int backgroundColor) {
    view.setBackgroundColor(backgroundColor);
}

我可以修复它,只是在我的iface对象中声明每个属性。

我不想手动列出所有道具,有没有办法将所有道具放在我的iface而不必了解它们?
类似的东西:

var {standardViewProps} = require('react-native');

var iface = {
    name: 'CustomView',
    propTypes: {
        ...standardViewProps,
        myProp: PropTypes.string
    }
}

1 个答案:

答案 0 :(得分:20)

编辑2017/06/02:

React Native 0.44已弃用View.propTypes。相反,请执行以下操作:

import { ViewPropTypes } from "react-native";

/* later... */
propTypes: {
    ...ViewPropTypes,
    myProp: PropTypes.string
}

以前的答案:

绝对:

var View = React.View;

/* later... */
propTypes: {
    ...View.propTypes,
    myProp: PropTypes.string
}