react native 扫描二维码

根据上一篇 调用camera来实现扫描二维码
主要是页面的部分

export default class ScanCameraPage extends Component {
    static navigationOptions = ({navigation}) => ({
        //标题
        title: "二维码",
        drawerLabel: '二维码',
        headerTitleStyle: {
            flex: 1,
            textAlign: "center",
        },
        headerRight: <View/>
    });

    constructor(props) {
        super(props);
        this.camera = null;
        this.state = {
            show: true,
            anim: new Animated.Value(0),
            camera: {
                aspect: Camera.constants.Aspect.fill,
            },
        };
    }

    componentDidMount() {
        InteractionManager.runAfterInteractions(() => {
            this.startAnimation()
        });
    }

    componentWillUnmount() {
        this.state.show = false;
    }

    render() {
        return (
            <View style={styles.container}>
                <Camera
                    ref={(cam) => {
                        this.camera = cam;
                    }}
                    style={styles.preview}
                    aspect={this.state.camera.aspect}
                    onBarCodeRead={this.barcodeReceived.bind(this)}
                    barCodeTypes={[Camera.constants.BarCodeType.qr]}>
                    <View style={{
                        height: Platform.OS == 'ios' ? (deviceHeight - 264) / 3 : (deviceHeight - 244) / 3,
                        width: deviceWidth,
                        backgroundColor: 'rgba(0,0,0,0.5)',
                    }}>
                    </View>
                    <View style={{flexDirection: 'row'}}>
                        <View style={styles.itemStyle}/>
                        <ImageBackground style={styles.rectangle}
                                         source={require('../../img/viewfinder.png')}>
                            <Animated.View style={[styles.animatiedStyle, {
                                transform: [{
                                    translateY: this.state.anim.interpolate({
                                        inputRange: [0, 1],
                                        outputRange: [0, 200]
                                    })
                                }]
                            }]}>
                            </Animated.View>
                        </ImageBackground>
                        <View style={styles.itemStyle}/>
                    </View>
                    <View style={{
                        flex: 1,
                        backgroundColor: 'rgba(0, 0, 0, 0.5)',
                        width: deviceWidth,
                        alignItems: 'center'
                    }}>
                        <Text style={styles.textStyle}>将二维码放入框内,即可自动扫描</Text>
                    </View>
                </Camera>

            </View>
        )
    }


    startAnimation() {
        if (this.state.show) {
            this.state.anim.setValue(0)
            Animated.timing(this.state.anim, {
                toValue: 1,
                duration: 1500,
                easing: Easing.linear,
            }).start(() => this.startAnimation());
        }
    }


    barcodeReceived(e) {
        Toast.show('Type: ' + e.type + '\nData: ' + e.data);
        this.props.navigation.goBack();
        //console.log(e)
    }
}


const styles = StyleSheet.create({
    itemStyle: {
        backgroundColor: 'rgba(0,0,0,0.5)',
        width: (deviceWidth - 200) / 2,
        height: 200
    },
    textStyle: {
        color: '#fff',
        marginTop: 10,
        fontWeight: 'bold',
        fontSize: 18
    },
    navTitleStyle: {
        color: 'white',
        fontWeight: 'bold',
    },
    navBarStyle: { // 导航条样式
        height: Platform.OS == 'ios' ? 64 : 44,
        backgroundColor: 'rgba(34,110,184,1.0)',
        // 设置主轴的方向
        flexDirection: 'row',
        // 垂直居中 ---> 设置侧轴的对齐方式
        alignItems: 'center',
        justifyContent: 'center'
    },

    leftViewStyle: {
        // 绝对定位
        // 设置主轴的方向
        flexDirection: 'row',
        position: 'absolute',
        left: 10,
        bottom: Platform.OS == 'ios' ? 15 : 12,
        alignItems: 'center',
        width: 30
    },
    animatiedStyle: {
        height: 2,
        backgroundColor: '#00FF00'
    },
    container: {
        flex: 1,
    },
    preview: {
        flex: 1,
    },
    rectangle: {
        height: 200,
        width: 200,
    }
});

注意
//这句是识别二维码,去掉这个,默认的支持所有的条码类型
barCodeTypes = {[Camera.constants.BarCodeType.qr]} 

效果


微信图片_20180718171907.jpg

另外一种设计
加四个边角:

export default class ScanPage extends Component {

    constructor(props) {
        super(props);
        this.state = {
            maskColor: '#0000004D',
            cornerColor: yellow_FFD900,
            borderColor: '#000000',
            rectHeight: 200,
            rectWidth: 200,
            borderWidth: 0,
            cornerBorderWidth: 4,
            cornerBorderLength: 20,
            isLoading: false,
            cornerOffsetSize: 10,
            isCornerOffset: false,
            bottomMenuHeight: 0,
            scanBarAnimateTime: 2500,
            scanBarColor: yellow_FFD900,
            scanBarImage: require('../../img/scanBar.png'),
            scanBarHeight: 1.5,
            scanBarMargin: 6,
            hintText: '将二维码/条码放入框内,即可自动扫描',
            hintTextStyle: {color: '#fff', fontSize: 14, backgroundColor: 'transparent'},
            hintTextPosition: 130,
            isShowScanBar: true,

            topWidth: 0,
            topHeight: 0,
            leftWidth: 0,
            animatedValue: new Animated.Value(0),
        }
    }

    static navigationOptions = {
        //标题
        title: "扫描",
        drawerLabel: '扫描',
        headerTitleStyle: {
            flex: 1,
            textAlign: "center",
        },
        headerRight: <View/>
    };


    componentDidMount() {
        this.scannerLineMove();
    }

    render() {

        const animatedStyle = {
            transform: [
                {translateY: this.state.animatedValue}
            ]
        };

        return (
            <View style={{flex: 1, backgroundColor: '#0000004D',}}>
                <Camera style={{flex: 1, backgroundColor: '#0000004D',}}>
                    <View
                        onLayout={({nativeEvent: e}) => this.measureTotalSize(e)}
                        style={[styles.container, this.getBottomMenuHeight()]}>

                        <View style={[styles.viewfinder, this.getRectSize()]}
                              onLayout={({nativeEvent: e}) => this.measureRectPosition(e)}
                        >

                            <View>
                                {/*扫描框部分*/}
                                <View>
                                    {/*扫描框边线*/}
                                    <View style={[
                                        this.getBorderSize(),
                                        this.getBorderColor(),
                                        this.getBorderWidth(),
                                    ]}>

                                        <Animated.View
                                            style={[animatedStyle,]}>
                                            {this.renderScanBar()}
                                        </Animated.View>

                                    </View>

                                    {/*扫描框转角-左上*/}
                                    <View style={[
                                        this.getCornerColor(),
                                        this.getCornerSize(),
                                        styles.topLeftCorner,
                                        {
                                            borderLeftWidth: this.state.cornerBorderWidth,
                                            borderTopWidth: this.state.cornerBorderWidth,
                                        }
                                    ]}/>

                                    {/*扫描框转角-右上*/}
                                    <View style={[
                                        this.getCornerColor(),
                                        this.getCornerSize(),
                                        styles.topRightCorner,
                                        {
                                            borderRightWidth: this.state.cornerBorderWidth,
                                            borderTopWidth: this.state.cornerBorderWidth,
                                        }
                                    ]}/>

                                    {/*加载动画*/}
                                    {this.renderLoadingIndicator()}

                                    {/*扫描框转角-左下*/}
                                    <View style={[
                                        this.getCornerColor(),
                                        this.getCornerSize(),
                                        styles.bottomLeftCorner,
                                        {
                                            borderLeftWidth: this.state.cornerBorderWidth,
                                            borderBottomWidth: this.state.cornerBorderWidth,
                                        }
                                    ]}/>


                                    {/*扫描框转角-右下*/}
                                    <View style={[
                                        this.getCornerColor(),
                                        this.getCornerSize(),
                                        styles.bottomRightCorner,
                                        {
                                            borderRightWidth: this.state.cornerBorderWidth,
                                            borderBottomWidth: this.state.cornerBorderWidth,
                                        }
                                    ]}/>
                                </View>

                                {/*遮罩-上*/}
                                <View style={[
                                    this.getBackgroundColor(),
                                    styles.topMask,
                                    {
                                        bottom: this.getTopMaskHeight(),
                                        width: this.state.topWidth,
                                    }
                                ]}/>

                                {/*遮罩-左*/}
                                <View style={[
                                    this.getBackgroundColor(),
                                    styles.leftMask,
                                    {
                                        height: this.getSideMaskHeight(),
                                        width: this.getSideMaskWidth(),
                                    }
                                ]}/>

                                {/*遮罩-右*/}
                                <View style={[
                                    this.getBackgroundColor(),
                                    styles.rightMask,
                                    {
                                        height: this.getSideMaskHeight(),
                                        // width: this.getSideMaskWidth(),
                                    }
                                ]}/>

                                {/*遮罩-下*/}
                                <View style={[
                                    this.getBackgroundColor(),
                                    styles.bottomMask,
                                    {
                                        top: this.getBottomMaskHeight(),
                                        width: this.state.topWidth,
                                    }
                                ]}/>

                                {/*提示文字*/}
                                <View style={{position: 'absolute', bottom: this.state.hintTextPosition}}>
                                    <Text style={this.state.hintTextStyle}>{this.state.hintText}</Text>
                                </View>
                            </View>

                            {/*底部操作栏*/}

                        </View>
                    </View>
                </Camera>

            </View>
        )

    }


    //获取背景颜色
    getBackgroundColor() {
        return ({
            backgroundColor: this.state.maskColor,
        });
    }

    //获取扫描框背景大小
    getRectSize() {
        return ({
            height: this.state.rectHeight,
            width: this.state.rectWidth,
        });
    }

    //获取扫描框边框大小
    getBorderSize() {
        if (this.state.isCornerOffset) {
            return ({
                height: this.state.rectHeight - this.state.cornerOffsetSize * 2,
                width: this.state.rectWidth - this.state.cornerOffsetSize * 2,
            });
        } else {
            return ({
                height: this.state.rectHeight,
                width: this.state.rectWidth,
            });
        }
    }

    //获取扫描框转角的颜色
    getCornerColor() {
        return ({
            borderColor: this.state.cornerColor,
        });
    }

    //获取扫描框转角的大小
    getCornerSize() {
        return ({
            height: this.state.cornerBorderLength,
            width: this.state.cornerBorderLength,
        });
    }

    //获取扫描框大小
    getBorderWidth() {
        return ({
            borderWidth: this.state.borderWidth,
        });
    }

    //获取扫描框颜色
    getBorderColor() {
        return ({
            borderColor: this.state.borderColor,
        });
    }

    //渲染加载动画
    renderLoadingIndicator() {
        if (!this.state.isLoading) {
            return null;
        }

        return (
            <ActivityIndicator
                animating={this.state.isLoading}
                color={this.state.color}
                size='large'
            />
        );
    }

    //测量整个扫描组件的大小
    measureTotalSize(e) {
        let totalSize = e.layout;
        this.setState({
            topWidth: totalSize.width,
        })
    }

    //测量扫描框的位置
    measureRectPosition(e) {
        let rectSize = e.layout;
        this.setState({
            topHeight: rectSize.y,
            leftWidth: rectSize.x,
        })
    }

    //获取顶部遮罩高度
    getTopMaskHeight() {
        if (this.state.isCornerOffset) {
            return this.state.topHeight + this.state.rectHeight - this.state.cornerOffsetSize;
        } else {
            return this.state.topHeight + this.state.rectHeight;
        }
    }

    //获取底部遮罩高度
    getBottomMaskHeight() {
        if (this.state.isCornerOffset) {
            return this.state.rectHeight + this.state.topHeight - this.state.cornerOffsetSize;
        } else {
            return this.state.topHeight + this.state.rectHeight;
        }
    }

    //获取左右两边遮罩高度
    getSideMaskHeight() {
        if (this.state.isCornerOffset) {
            return this.state.rectHeight - this.state.cornerOffsetSize * 2;
        } else {
            return this.state.rectHeight;
        }
    }

    //获取左右两边遮罩宽度
    getSideMaskWidth() {
        if (this.state.isCornerOffset) {
            return this.state.rectWidth - this.state.cornerOffsetSize*2;
        } else {
            return this.state.rectWidth;
        }
    }

    getBottomMenuHeight() {
        return ({
            bottom: this.state.bottomMenuHeight,
        });
    }

    getScanBarMargin() {
        return ({
            marginRight: this.state.scanBarMargin,
            marginLeft: this.state.scanBarMargin,
        })
    }

    getScanImageWidth() {
        return this.state.rectWidth - this.state.scanBarMargin * 2
    }


    //绘制扫描线
    renderScanBar() {
        if (!this.state.isShowScanBar) return;
        if (this.state.scanBarImage) {
            return <Image style={{resizeMode: 'contain', width: this.getScanImageWidth()}}
                          source={this.state.scanBarImage}/>
        } else {
            return <View style={[this.getScanBarMargin(), {
                backgroundColor: this.state.scanBarColor,
                height: this.state.scanBarHeight,
            }]}/>
        }
    }


    scannerLineMove() {
        this.state.animatedValue.setValue(0);  //重置Rotate动画值为0
        Animated.timing(this.state.animatedValue, {
            toValue: this.state.rectHeight,
            duration: this.state.scanBarAnimateTime,
            easing: Easing.linear,
            sInteraction: false
        }).start(() => this.scannerLineMove());
    }
}

const styles = StyleSheet.create({
    itemStyle: {
        backgroundColor: 'rgba(0,0,0,0.5)',
        width: (deviceWidth - 200) / 2,
        height: 200
    },
    textStyle: {
        color: '#fff',
        marginTop: 10,
        fontWeight: 'bold',
        fontSize: 18
    },
    navTitleStyle: {
        color: 'white',
        fontWeight: 'bold',
    },
    navBarStyle: { // 导航条样式
        height: Platform.OS == 'ios' ? 64 : 44,
        backgroundColor: 'rgba(34,110,184,1.0)',
        // 设置主轴的方向
        flexDirection: 'row',
        // 垂直居中 ---> 设置侧轴的对齐方式
        alignItems: 'center',
        justifyContent: 'center'
    },

    leftViewStyle: {
        // 绝对定位
        // 设置主轴的方向
        flexDirection: 'row',
        position: 'absolute',
        left: 10,
        bottom: Platform.OS == 'ios' ? 15 : 12,
        alignItems: 'center',
        width: 30
    },
    animatiedStyle: {
        height: 2,
        backgroundColor: '#00FF00'
    },
    container: {
        flex: 1,
    },
    preview: {
        flex: 1,
    },
    rectangle: {
        height: 200,
        width: 200,
    },
    buttonsContainer: {
        position: 'absolute',
        height: 100,
        bottom: 0,
        left: 0,
        right: 0,
    },
    container: {
        alignItems: 'center',
        justifyContent: 'center',
        position: 'absolute',
        top: 0,
        right: 0,
        left: 0,
    },
    viewfinder: {
        alignItems: 'center',
        justifyContent: 'center',
    },
    topLeftCorner: {
        position: 'absolute',
        top: 0,
        left: 0,
    },
    topRightCorner: {
        position: 'absolute',
        top: 0,
        right: 0,
    },
    bottomLeftCorner: {
        position: 'absolute',
        bottom: 0,
        left: 0,
    },
    bottomRightCorner: {
        position: 'absolute',
        bottom: 0,
        right: 0,
    },
    topMask: {
        position: 'absolute',
        top: 0,
    },
    leftMask: {
        position: 'absolute',
        left: 0,
    },
    rightMask: {
        position: 'absolute',
        right: 0,
    },
    bottomMask: {
        position: 'absolute',
        bottom: 0,
    }
});

效果

参考:https://blog.csdn.net/sinat_17775997/article/details/71077158

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容