本篇博客转自:http://blog.csdn.net/xiangzhihong8/article/details/76862097

在很多产品中都会涉及到下拉菜单选择功能,用的最好的当属美团了,其效果如下: 

要实现上面的效果,在原生中比较好做,直接使用PopWindow组件即可。如果使用React Native开发上面的效果,需要注意几个问题: 
1、 在下拉的时候有动画过度效果; 
2、下拉菜单出现后点击菜单项,菜单项可选择,并触发对应的事件; 
3、下拉菜单中的项目可以配置;

要实现弹框效果,我们马上回想到使用Model组件,而要绘制打钩图标和下拉三角,我们首先想到使用ART实现,当然选择使用图标也是可以的。例如使用ART绘制对勾的代码如下:

const Check = ()=>{return (<Surface
        width={18}height={12}><Group scale={0.03}><Shape
                fill={COLOR_HIGH}d={`M494,52c-13-13-33-13-46,0L176,324L62,211c-13-13-33-13-46,0s-13,33,0,46l137,136c6,6,15,10,23,10s17-4,23-10L494,99C507,86,507,65,494,52z`}/></Group></Surface>);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

下拉动画的实现上,需要使用Animated。例如,背景颜色变化需要使用Animated.timing。

 this.state.fadeInOpacity,               {toValue: value,                 duration : 250, }
  • 1
  • 2
  • 3
  • 4
  • 5

运行效果:

本示例设计三个文件:导航栏FoodActionBar.js,下拉弹框TopMenu.js和文件主类FoodView.js。 
FoodActionBar.js

/*** https://github.com/facebook/react-native* @flow 首页的标题栏*/import React, {Component} from 'react';
import {Platform, View, Dimensions, Text, StyleSheet, TouchableOpacity, Image} from 'react-native';
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 FoodActionBar extends Component {constructor(props) {super(props);this.state = {showPop: false,}}renderHeader() {return (<View style={styles.headerStyle}><TouchableOpacity style={styles.action} ><Image style={styles.scanIcon}/></TouchableOpacity><TouchableOpacity style={styles.searchBar}><Image source={require('../images/ic_search.png')} style={styles.iconStyle}/><Text style={{fontSize: 13, color: "#666", marginLeft: 5}}>输入商家名、品类和商圈</Text></TouchableOpacity><TouchableOpacity style={styles.action} onPress={() => { this.setState({ showPop: !this.state.showPop }) }}><Image style={styles.scanIcon}source={require('../images/icon_address.png')}/></TouchableOpacity></View>)}render() {return (<View>{this.renderHeader()}</View>);}
}const styles = StyleSheet.create({headerStyle: {backgroundColor: "#ffffff",height: headH,paddingTop: px2dp(isIOS ? 20 : 0),flexDirection: 'row',alignItems: 'center',},searchBar: {flex:1,height: 30,borderRadius: 19,backgroundColor:'#e9e9e9',marginLeft: 10,flexDirection: 'row',justifyContent: 'flex-start',alignItems: 'center',alignSelf: 'center',paddingLeft: 10,},text: {fontSize: 16,color: '#ffffff',justifyContent: 'center',},iconStyle: {width: 22,height: 22,},action: {flexDirection: 'row',justifyContent: 'center',alignItems: 'center',marginLeft:10,marginRight:10},scanIcon: {width: 28,height: 28,alignItems: 'center',},scanText: {fontSize: 14,color: '#ffffff',justifyContent: 'center',alignItems: 'center',},
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99

TopMenu.js

/*** Sample React Native App* https://github.com/facebook/react-native* @flow*/import React, {Component} from 'react';
import {AppRegistry,StyleSheet,Animated,ScrollView,Dimensions,PixelRatio,Text,TouchableWithoutFeedback,TouchableHighlight,ART,View
} from 'react-native';const {Surface, Shape, Path, Group} = ART;const {width, height} = Dimensions.get('window');const T_WIDTH = 7;
const T_HEIGHT = 4;const COLOR_HIGH = '#00bea9';
const COLOR_NORMAL = '#6c6c6c';const LINE = 1 / PixelRatio.get();class Triangle extends React.Component {render() {var path;var fill;if (this.props.selected) {fill = COLOR_HIGH;path = new Path().moveTo(T_WIDTH / 2, 0).lineTo(0, T_HEIGHT).lineTo(T_WIDTH, T_HEIGHT).close();} else {fill = COLOR_NORMAL;path = new Path().moveTo(0, 0).lineTo(T_WIDTH, 0).lineTo(T_WIDTH / 2, T_HEIGHT).close();}return (<Surface width={T_WIDTH} height={T_HEIGHT}><Shape d={path} stroke="#00000000" fill={fill} strokeWidth={0}/></Surface>)}
}const TopMenuItem = (props) => {const onPress = () => {props.onSelect(props.index);}return (<TouchableWithoutFeedback onPress={onPress}><View style={styles.item}><Text style={props.selected ? styles.menuTextHigh : styles.menuText}>{props.label}</Text><Triangle selected={props.selected}/></View></TouchableWithoutFeedback>);
};const Subtitle = (props) => {let textStyle = props.selected ?[styles.tableItemText, styles.highlight, styles.marginHigh] :[styles.tableItemText, styles.margin];let rightTextStyle = props.selected ? [styles.tableItemText, styles.highlight] : styles.tableItemText;let onPress = () => {props.onSelectMenu(props.index, props.subindex, props.data);}return (<TouchableHighlight onPress={onPress} underlayColor="#f5f5f5"><View style={styles.tableItem}><View style={styles.row}>{props.selected && <Check />}<Text style={textStyle}>{props.data.title}</Text></View><Text style={rightTextStyle}>{props.data.subtitle}</Text></View></TouchableHighlight>);
};const Title = (props) => {let textStyle = props.selected ?[styles.tableItemText, styles.highlight, styles.marginHigh] :[styles.tableItemText, styles.margin];let rightTextStyle = props.selected ? [styles.tableItemText, styles.highlight] : styles.tableItemText;let onPress = () => {props.onSelectMenu(props.index, props.subindex, props.data);}return (<TouchableHighlight onPress={onPress} underlayColor="#f5f5f5"><View style={styles.titleItem}>{props.selected && <Check />}<Text style={textStyle}>{props.data.title}</Text></View></TouchableHighlight>);
};const Check = () => {return (<Surfacewidth={18}height={12}><Group scale={0.03}><Shapefill={COLOR_HIGH}d={`M494,52c-13-13-33-13-46,0L176,324L62,211c-13-13-33-13-46,0s-13,33,0,46l137,136c6,6,15,10,23,10s17-4,23-10L494,99C507,86,507,65,494,52z`}/></Group></Surface>);
}export default class TopMenu extends Component {constructor(props) {super(props);let array = props.config;let top = [];let maxHeight = [];let subselected = [];let height = [];//最大高度var max = parseInt((height - 80) * 0.8 / 43);for (let i = 0, c = array.length; i < c; ++i) {let item = array[i];top[i] = item.data[item.selectedIndex].title;maxHeight[i] = Math.min(item.data.length, max) * 43;subselected[i] = item.selectedIndex;height[i] = new Animated.Value(0);}//分析数据this.state = {top: top,maxHeight: maxHeight,subselected: subselected,height: height,fadeInOpacity: new Animated.Value(0),selectedIndex: null};}componentDidMount() {}createAnimation = (index, height) => {return Animated.timing(this.state.height[index],{toValue: height,duration: 250});}createFade = (value) => {return Animated.timing(this.state.fadeInOpacity,{toValue: value,duration: 250,});}onSelect = (index) => {if (index === this.state.selectedIndex) {//消失this.hide(index);} else {this.setState({selectedIndex: index, current: index});this.onShow(index);}}hide = (index, subselected) => {let opts = {selectedIndex: null, current: index};if (subselected !== undefined) {this.state.subselected[index] = subselected;this.state.top[index] = this.props.config[index].data[subselected].title;opts = {selectedIndex: null, current: index, subselected: this.state.subselected.concat()};}this.setState(opts);this.onHide(index);}onShow = (index) => {Animated.parallel([this.createAnimation(index, this.state.maxHeight[index]), this.createFade(1)]).start();}onHide = (index) => {//其他的设置为0for (let i = 0, c = this.state.height.length; i < c; ++i) {if (index != i) {this.state.height[i].setValue(0);}}Animated.parallel([this.createAnimation(index, 0), this.createFade(0)]).start();}onSelectMenu = (index, subindex, data) => {this.hide(index, subindex);this.props.onSelectMenu && this.props.onSelectMenu(index, subindex, data);}renderList = (d, index) => {let subselected = this.state.subselected[index];let Comp = null;if (d.type == 'title') {Comp = Title;} else {Comp = Subtitle;}let enabled = this.state.selectedIndex == index || this.state.current == index;return (<Animated.View key={index} pointerEvents={enabled ? 'auto' : 'none'}style={[styles.content, {opacity: enabled ? 1 : 0, height: this.state.height[index]}]}><ScrollView style={styles.scroll}>{d.data.map((data, subindex) => {return <ComponSelectMenu={this.onSelectMenu}index={index}subindex={subindex}data={data}selected={subselected == subindex}key={subindex}/>})}</ScrollView></Animated.View>);}render() {let list = null;if (this.state.selectedIndex !== null) {list = this.props.config[this.state.selectedIndex].data;}console.log(list);return (<View style={{flex: 1}}><View style={styles.topMenu}>{this.state.top.map((t, index) => {return <TopMenuItemkey={index}index={index}onSelect={this.onSelect}label={t}selected={this.state.selectedIndex === index}/>})}</View>{this.props.renderContent()}<View style={styles.bgContainer} pointerEvents={this.state.selectedIndex !== null ? "auto" : "none"}><Animated.View style={[styles.bg, {opacity: this.state.fadeInOpacity}]}/>{this.props.config.map((d, index) => {return this.renderList(d, index);})}</View></View>);}
}const styles = StyleSheet.create({scroll: {flex: 1, backgroundColor: '#fff'},bgContainer: {position: 'absolute', top: 40, width: width, height: height},bg: {flex: 1, backgroundColor: 'rgba(50,50,50,0.2)'},content: {position: 'absolute',width: width},highlight: {color: COLOR_HIGH},marginHigh: {marginLeft: 10},margin: {marginLeft: 28},titleItem: {height: 43,alignItems: 'center',paddingLeft: 10,paddingRight: 10,borderBottomWidth: LINE,borderBottomColor: '#eee',flexDirection: 'row',},tableItem: {height: 43,alignItems: 'center',paddingLeft: 10,paddingRight: 10,borderBottomWidth: LINE,borderBottomColor: '#eee',flexDirection: 'row',justifyContent: 'space-between'},tableItemText: {fontWeight: '300', fontSize: 14},row: {flexDirection: 'row'},item: {flex: 1,flexDirection: 'row',alignItems: 'center',justifyContent: 'center',},menuTextHigh: {marginRight: 3,fontSize: 13,color: COLOR_HIGH},menuText: {marginRight: 3,fontSize: 13,color: COLOR_NORMAL},topMenu: {flexDirection: 'row',height: 40,borderTopWidth: LINE,borderTopColor: '#bdbdbd',borderBottomWidth: 1,borderBottomColor: '#f2f2f2'},});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377

主类FoodView.js:

/*** Sample React Native App* https://github.com/facebook/react-native* @flow*/import React, {Component} from 'react';
import {AppRegistry,StyleSheet,TouchableOpacity,Dimensions,Text,View
} from 'react-native';
const {width, height} = Dimensions.get('window');import FoodActionBar from "./pop/FoodActionBar";
import Separator from "./util/Separator";
import TopMenu from "./pop/TopMenu";const CONFIG = [{type:'subtitle',selectedIndex:1,data:[{title:'全部', subtitle:'1200m'},{title:'自助餐', subtitle:'300m'},{title:'自助餐', subtitle:'200m'},{title:'自助餐', subtitle:'500m'},{title:'自助餐', subtitle:'800m'},{title:'自助餐', subtitle:'700m'},{title:'自助餐', subtitle:'900m'},]},{type:'title',selectedIndex:0,data:[{title:'智能排序'}, {title:'离我最近'}, {title:'好评优先'}, {title:'人气最高'}]}
];export default class FoodView extends Component {constructor(props){super(props);this.state = {data:{}};}renderContent=()=>{return (<TouchableOpacity ><Text style={styles.text}>index:{this.state.index} subindex:{this.state.subindex} title:{this.state.data.title}</Text></TouchableOpacity>);// alert(this.state.data.title)};onSelectMenu=(index, subindex, data)=>{this.setState({index, subindex, data});};render() {return (<View style={styles.container}><FoodActionBar/><Separator/><TopMenu style={styles.container} config={CONFIG} onSelectMenu={this.onSelectMenu} renderContent={this.renderContent}/></View>);}
}const styles = StyleSheet.create({container: {flex: 1,width:width,backgroundColor: '#F5FCFF',},text: {fontSize:20,marginTop:100,justifyContent: 'center',alignItems: 'center',},});

React Native仿美团下拉菜单相关推荐

  1. 仿美团下拉菜单 html,React Native仿美团下拉菜单的实例代码

    本文介绍了React Native仿美团下拉菜单的实例代码,最近也在学习React Native,顺便分享给大家 在很多产品中都会涉及到下拉菜单选择功能,用的最好的当属美团了,其效果如下: 要实现上面 ...

  2. Android自定义控件:仿美团下拉菜单及相关代码优化

    背景 最近的项目中用到了类似美团中的下拉多选菜单,在实际开发过程中,也发现了一些问题,主要归纳如下: 1.当菜单较为复杂时,如果不能设计好代码逻辑,将造成控件难于维护 2.美团菜单可以连续点击顶部ta ...

  3. Android仿美团下拉菜单

    下拉菜单现在在项目中挺常见的,比如说我现在写的这个项目六个小模块都用到,所以当项目完成之后,我把一些需要注意的项在这里整理出来,希望对大家也能有所帮助: 当然,为了简单,我也是在网上找了一个第三方的控 ...

  4. android 美团下拉菜单,Android仿美团分类下拉菜单实例代码

    本文实例为大家分享了Android仿美团下拉菜单的实现代码,分类进行选择,供大家参考,具体内容如下 效果图 操作平台 AS2.0 第三方框架:butterknife build.gradle depe ...

  5. 仿Ios下拉菜单,android Spinner效果(美团下拉效果)

    先上效果图: 直接上代码: Ios spinner文件 package com.choe.iosspinner;import android.app.Activity; import android. ...

  6. 仿美团下拉刷新控件(二)

    如果想学习更多进阶知识,可以关注我的微信公众号:Android小菜. 也可以直接扫描二维码关注: 转载本专栏文章,请注明出处,尊重原创 .文章博客地址:道龙的博客 本篇是实现仿美团下拉刷新控件的第二篇 ...

  7. 仿美团下拉刷新控件(一)

    如果想学习更多进阶知识,可以关注我的微信公众号:Android小菜. 也可以直接扫描二维码关注: 转载本专栏文章,请注明出处,尊重原创 .文章博客地址:道龙的博客 很有幸能进入美团.本文就仿写一下美团 ...

  8. 【ExpandTabView】Android 仿大众,美团下拉菜单ExpandTabView

    原文地址:https://github.com/yueyueniao2012/ExpandTabView 参考地址:http://blog.csdn.net/minimicall/article/de ...

  9. html5 移动端 下拉菜单,react实现移动端下拉菜单的示例代码

    前言 项目中要实现类似与vant的DropdownMenu:下拉菜单.看了vans 的效果 其实也没什么难度,于是动手鲁了一个这样的组件. 项目的技术栈为react全家桶+material UI + ...

最新文章

  1. Spring Cache抽象-使用SpEL表达式
  2. 极大似然估计与贝叶斯定理
  3. 此网址已被限制 此网址使用了一个通常用于网络浏览以外目的的端口。出于安全原因,Firefox 取消了该请求。
  4. jdk8 Arrays.sort()实现分析
  5. 2019年7月数据库流行度排行:Oracle王者归来获大幅增长
  6. bzoj4598 [Sdoi2016]模式字符串 hash+点分
  7. python写入指定行_python文件操作如何写在指定的行
  8. 软考信息系统项目管理师_体系介绍_证书作用价值_报考条件_考生分析---软考高级之信息系统项目管理师001
  9. 【渝粤教育】国家开放大学2018年春季 0032-22T农业经济学 参考试题
  10. 顶点计划:寝室作息讨论
  11. php pathinfo 解析,php 解析pathinfo 类
  12. Linux实现黑客帝国炫酷效果
  13. IT眼界--- 十亿美金之盛大盒子
  14. 解决linux(centos7)重新安装mysql systemctl start mysqld.service时报错
  15. nginx日志中$request_body 十六进制字符(\x22\x9B\x5C\x09\x08...)完美解决方案
  16. Xmanager中的Xbrowser怎么使用?
  17. 读书节最该买的书,我都帮你们挑出来了
  18. Mysql数据库查询去除重复_mysql数据库如何去重复数据
  19. 【音乐理论】音与音高 ( 音区 | 小字一组 | 小字组 | 大字组 )
  20. c语言大作业黑白棋,C语言编写黑白棋游戏源代码.doc

热门文章

  1. D - Petya and Array(树状数组,二分)
  2. C. Petya and Inequiations
  3. katalon等待时间、断言、setup teardown
  4. 小样本学习记录————文本中特征空间的数据增强MEDA: Meta-Learning with Data Augmentation for Few-Shot Text Classification
  5. arm体系结构总结笔5-总线接口
  6. HTML——3D移动、3D透视、3D效果、3D呈现案例效果
  7. 你不知道的3D电影7大危害
  8. goinception审核规则
  9. 【普及组_在线赛】班级聚会(reuntion)
  10. babylon101| 08. Cameras, Mesh Collisions and Gravity(相机、碰撞和重力)