在原生APP開發(fā)中,相信很多開發(fā)者都會(huì)見到這種場(chǎng)景:點(diǎn)擊右上角更多的選項(xiàng),彈出一個(gè)更多界面供用戶選擇。這種控件在原生開發(fā)中Android可以用PopupWindow實(shí)現(xiàn),在iOS中可以用CMPopTipView,也可以自己寫一個(gè)View實(shí)現(xiàn)。其類似的效果如下圖所示:
我們提供的服務(wù)有:網(wǎng)站制作、成都做網(wǎng)站、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、嘉祥ssl等。為上1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的嘉祥網(wǎng)站制作公司
實(shí)現(xiàn)思路分析:
要實(shí)現(xiàn)上面的視圖,有很多種實(shí)現(xiàn)方式。前面的文章說過,要實(shí)現(xiàn)彈框相關(guān)的可以用React Native 提供的 Modal組件(Modal組件),使用Modal組件可以實(shí)現(xiàn)我們?cè)_發(fā)中的大多數(shù)效果。
要實(shí)現(xiàn)下拉三角,可以讓美工切一個(gè)帶下拉三角的背景,當(dāng)然也可以自己通過ART實(shí)現(xiàn)(ART繪制)。對(duì)于選項(xiàng)卡的內(nèi)容,在原生開發(fā)中為了適應(yīng)更多的場(chǎng)景,我們一般會(huì)選擇使用ListView組件,然后當(dāng)點(diǎn)擊某個(gè)Item的時(shí)候獲得相應(yīng)的屬性即可。為了控制Modal的顯示與消失,我們可以給Modal內(nèi)置一個(gè)isVisible: this.props.show狀態(tài)。
源碼
要實(shí)現(xiàn)上面的效果,會(huì)這涉及到三個(gè)js文件:MorePopWidows.js、Utils.js、HomeActionBar.js,按照先后順序,代碼如下:
Utils.js
import {Dimensions} from 'react-native' const deviceH = Dimensions.get('window').height const deviceW = Dimensions.get('window').width const basePx = 375 export default function px2dp(px) { return px * deviceW / basePx }
MorePopWidows.js
import React from 'react' import { StyleSheet, Platform, View, Text, Image, TouchableOpacity, Alert, Modal, Dimensions, } from 'react-native' import SpacingView from "./SpacingView"; import QRScanPage from "../home/QRScanPage"; const { width, height } = Dimensions.get('window'); import px2dp from '../util/Utils' const mTop = px2dp(Platform.OS == "ios" ? 64 : 44) let mwidth = 95; let mheight = 100; const marginTop = mTop; export default class MorePopWidows extends React.Component { constructor(props) { super(props); this.state = { isVisible: this.props.show, } mwidth = this.props.width ; mheight = this.props.height ; } componentWillReceiveProps(nextProps) { this.setState({ isVisible: nextProps.show }); } closeModal() { this.setState({ isVisible: false }); this.props.closeModal(false); } scan() { this.props.navigator.push({ component: QRScanPage, }) } render() { return () } } const styles = StyleSheet.create({ container: { width: width, height: height, }, modal: { backgroundColor: '#696969', width: mwidth, height: mheight, position: 'absolute', left: width - mwidth - 10, top: marginTop, padding: 5, justifyContent: 'center', alignItems: 'center', borderRadius: 3, }, itemView: { flexDirection: 'row', justifyContent: 'center', alignItems: 'center', flex: 1, }, textStyle: { color: '#fff', fontSize: 14, marginLeft: 2, }, imgStyle: { width: 20, height: 20, } }); this.closeModal()}> this.closeModal()}> 掃一掃 Alert.alert('點(diǎn)擊了付款碼')} style={styles.itemView}> 付款碼
最后是在代碼中使用MorePopWidows的代碼:
HomeActionBar.js
/** * https://github.com/facebook/react-native * @flow 首頁的標(biāo)題欄 */ import React, {Component} from 'react'; import {Platform, View, Dimensions, Text, StyleSheet, TouchableOpacity, Image} from 'react-native'; import SelectCityPage from '../home/SelectCityPage' import MorePopWidows from '../component/MorePopWidows' import px2dp from '../util/Utils' const isIOS = Platform.OS == "ios" const {width, height} = Dimensions.get('window') const headH = px2dp(isIOS ? 64 : 44) export default class HomeActionBar extends Component { constructor(props) { super(props); this.state = { showPop: false, } } city() { this.props.navigator.push({ component: SelectCityPage, }) } renderHeader() { return () } render() { return ( 上海 輸入商家、商品名稱 { this.setState({ showPop: !this.state.showPop }) }}> 掃碼 { this.setState({showPop: show}) }} {...this.props}/> {this.renderHeader()} ); } } const styles = StyleSheet.create({ headerStyle: { backgroundColor: "#06C1AE", height: headH, paddingTop: px2dp(isIOS ? 20 : 0), paddingHorizontal: 16, flexDirection: 'row', alignItems: 'center', }, searchBar: { width: width * 0.65, height: 30, borderRadius: 19, marginLeft: 10, flexDirection: 'row', justifyContent: 'flex-start', alignItems: 'center', backgroundColor: 'white', alignSelf: 'center', paddingLeft: 10, }, text: { fontSize: 16, color: '#ffffff', justifyContent: 'center', }, iconStyle: { width: 22, height: 22, }, action: { flexDirection: 'row', justifyContent: 'center', alignItems: 'center', }, scanIcon: { width: 28, height: 28, alignItems: 'center', marginLeft: 10, }, scanText: { fontSize: 14, color: '#ffffff', justifyContent: 'center', alignItems: 'center', }, });
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。