react-native 之布局篇
宽度单位和像素密度react的宽度不支持百分比,设置宽度时不需要带单位 不知道是官网文档不全还是我眼瞎,反正是没找到,那做一个实验自己找吧: var Dimensions = require('Dimensions'); <Text style={styles.welcome}> window.width={Dimensions.get('window').width + 'n'} window.height={Dimensions.get('window').height + 'n'} pxielRatio={PixelRatio.get()} </Text> 默认用的是ihone6的模拟器结果是: window.width=375 window.height=667 我们知道iphone系列的尺寸如下图:
可以看到iphone 6的宽度为 375pt,对应了上边的375,实际上官文指出的单位为 dp 。 那如何获取实际的像素尺寸呢? 这对图片的高清化很重要,如果我的图片大小为100100 px. 设置宽度为100 100. 那在iphone上的尺寸就是模糊的。 这个时候需要的图像大小应该是 100 * pixelRatio的大小 。 react 提供了PixelRatio 的获取方式https://facebook.github.io/react-native/docs/pixelratio.html var image = getImage({ width: 200 * PixelRatio.get(),height: 100 * PixelRatio.get() }); <Image source={image} style={{width: 200,height: 100}} /> flex的布局默认宽度我们知道一个div如果不设置宽度,默认的会占用100%的宽度, 为了验证100%这个问题, 做三个实验
<Text style={[styles.text,styles.header]}> 根节点上放一个元素,不设置宽度 </Text> <View style={{height: 20,backgroundColor: '#333333'}} /> <Text style={[styles.text,styles.header]}> 固定宽度的元素上放一个View,不设置宽度 </Text> <View style={{width: 100}}> <View style={{height: 20,backgroundColor: '#333333'}} /> </View> <Text style={[styles.text,styles.header]}> flex的元素上放一个View,不设置宽度 </Text> <View style={{flexDirection: 'row'}}> <View style={{flex: 1}}> <View style={{height: 20,backgroundColor: '#333333'}} /> </View> <View style={{flex: 1}}/> </View>
结果可以看到flex的元素如果不设置宽度, 都会百分之百的占满父容器。 水平垂直居中css 里边经常会做的事情是去讲一个文本或者图片水平垂直居中,如果使用过css 的flexbox当然知道使用 <Text style={[styles.text,styles.header]}> 水平居中 </Text> <View style={{height: 100,backgroundColor: '#333333',alignItems: 'center'}}> <View style={{backgroundColor: '#fefefe',width: 30,height: 30,borderRadius: 15}}/> </View> <Text style={[styles.text,styles.header]}> 垂直居中 </Text> <View style={{height: 100,justifyContent: 'center'}}> <View style={{backgroundColor: '#fefefe',borderRadius: 15}}/> </View> <Text style={[styles.text,styles.header]}> 水平垂直居中 </Text> <View style={{height: 100,alignItems: 'center',borderRadius: 15}}/> </View>
网格布局网格布局实验, 网格布局能够满足绝大多数的日常开发需求,所以只要满足网格布局的spec,那么就可以证明react的flex布局能够满足正常开发需求 等分的网格
<View style={styles.flexContainer}> <View style={styles.cell}> <Text style={styles.welcome}> cell1 </Text> </View> <View style={styles.cell}> <Text style={styles.welcome}> cell2 </Text> </View> <View style={styles.cell}> <Text style={styles.welcome}> cell3 </Text> </View> </View> styles = { flexContainer: { // 容器需要添加direction才能变成让子元素flex flexDirection: 'row' },cell: { flex: 1,height: 50,backgroundColor: '#aaaaaa' },welcome: { fontSize: 20,textAlign: 'center',margin: 10 },} 左边固定, 右边固定,中间flex的布局
<View style={styles.flexContainer}> <View style={styles.cellfixed}> <Text style={styles.welcome}> fixed </Text> </View> <View style={styles.cell}> <Text style={styles.welcome}> flex </Text> </View> <View style={styles.cellfixed}> <Text style={styles.welcome}> fixed </Text> </View> </View> styles = { flexContainer: { // 容器需要添加direction才能变成让子元素flex flexDirection: 'row' },cellfixed: { height: 50,width: 80,backgroundColor: '#fefefe' } } 嵌套的网格通常网格不是一层的,布局容器都是一层套一层的, 所以必须验证在 <Text style={[styles.text,styles.header]}> 嵌套的网格 </Text> <View style={{flexDirection: 'row',height: 200,backgroundColor:"#fefefe",padding: 20}}> <View style={{flex: 1,flexDirection:'column',padding: 15,backgroundColor:"#eeeeee"}}> <View style={{flex: 1,backgroundColor:"#bbaaaa"}}> </View> <View style={{flex: 1,backgroundColor:"#aabbaa"}}> </View> </View> <View style={{flex: 1,flexDirection:'row',backgroundColor:"#eeeeee"}}> <View style={{flex: 1,backgroundColor:"#aaaabb"}}> <View style={{flex: 1,backgroundColor:"#eeaaaa"}}> <View style={{flex: 1,backgroundColor:"#eebbaa"}}> </View> <View style={{flex: 1,backgroundColor:"#bbccee"}}> </View> </View> <View style={{flex: 1,backgroundColor:"#eebbdd"}}> </View> </View> <View style={{flex: 1,backgroundColor:"#aaccaa"}}> <ScrollView style={{flex: 1,backgroundColor:"#bbccdd",padding: 5}}> <View style={{flexDirection: 'row',backgroundColor:"#fefefe"}}> <View style={{flex: 1,backgroundColor:"#eeeeee"}}> <View style={{flex: 1,backgroundColor:"#bbaaaa"}}> </View> <View style={{flex: 1,backgroundColor:"#aabbaa"}}> </View> </View> <View style={{flex: 1,backgroundColor:"#eeeeee"}}> <View style={{flex: 1,backgroundColor:"#aaaabb"}}> <View style={{flex: 1,backgroundColor:"#eeaaaa"}}> <View style={{flex: 1,backgroundColor:"#eebbaa"}}> </View> <View style={{flex: 1,backgroundColor:"#bbccee"}}> </View> </View> <View style={{flex: 1,backgroundColor:"#eebbdd"}}> </View> </View> <View style={{flex: 1,backgroundColor:"#aaccaa"}}> </View> </View> </View> <Text style={[styles.text,styles.header,{color: '#ffffff',fontSize: 12}]}> {(function(){ var str = ''; var n = 100; while(n--) { str += '嵌套的网格' + 'n'; } return str; })()} </Text> </ScrollView> </View> </View> </View>
好在没被我玩儿坏,可以看到上图的嵌套关系也是足够的复杂的,(我还加了一个ScrollView,然后再嵌套整个结构)嵌套多层的布局是没有问题的。 图片布局首先我们得知道图片有一个stretchMode. 通过Image.resizeMode访问 找出有哪些modevar keys = Object.keys(Image.resizeMode).join(' '); 打印出来的是 contain,cover,stretch 这几种模式, (官方文档不知道为什么不直接给出) 尝试使用这些mode<Text style={styles.welcome}> 100px height </Text> <Image style={{height: 100}} source={{uri: 'http://gtms03.alicdn.com/tps/i3/TB1Kcs5GXXXXXbMXVXXutsrNFXX-608-370.png'}} />
100px 高度, 可以看到图片适应100高度和全屏宽度,背景居中适应未拉伸但是被截断也就是cover。 <Text style={styles.welcome}> 100px height with resizeMode contain </Text> <View style={[{flex: 1,backgroundColor: '#fe0000'}]}> <Image style={{flex: 1,height: 100,resizeMode: Image.resizeMode.contain}} source={{uri: 'http://gtms03.alicdn.com/tps/i3/TB1Kcs5GXXXXXbMXVXXutsrNFXX-608-370.png'}} /> </View>
<Text style={styles.welcome}> 100px height with resizeMode cover </Text> <View style={[{flex: 1,resizeMode: Image.resizeMode.cover}} source={{uri: 'http://gtms03.alicdn.com/tps/i3/TB1Kcs5GXXXXXbMXVXXutsrNFXX-608-370.png'}} /> </View>
cover模式同100px高度模式 <Text style={styles.welcome}> 100px height with resizeMode stretch </Text> <View style={[{flex: 1,resizeMode: Image.resizeMode.stretch}} source={{uri: 'http://gtms03.alicdn.com/tps/i3/TB1Kcs5GXXXXXbMXVXXutsrNFXX-608-370.png'}} /> </View>
stretch模式图片被拉伸适应屏幕 <Text style={styles.welcome}> set height to image container </Text> <View style={[{flex: 1,backgroundColor: '#fe0000',height: 100}]}> <Image style={{flex: 1}} source={{uri: 'http://gtms03.alicdn.com/tps/i3/TB1Kcs5GXXXXXbMXVXXutsrNFXX-608-370.png'}} /> </View>
随便试验了一下, 发现高度设置到父容器,图片flex的时候也会等同于cover模式 绝对定位和相对定位<View style={{flex: 1,backgroundColor: '#333333'}}> <View style={[styles.circle,{position: 'absolute',top: 50,left: 180}]}> </View> </View> styles = { circle: { backgroundColor: '#fe0000',borderRadius: 10,width: 20,height: 20 } }
和css的标准不同的是, 元素容器不用设置 <View style={{flex: 1,{position: 'relative',left: 50,marginLeft: 50}]}> </View> </View>
相对定位的可以看到很容易的配合margin做到了。 (我还担心不能配合margin,所以测试了一下:-:) padding和margin我们知道在css中区分inline元素和block元素,既然react-native实现了一个超级小的css subset。那我们就来实验一下padding和margin在inline和非inline元素上的padding和margin的使用情况。 padding <Text style={[styles.text,styles.header]}> 在正常的View上设置padding </Text> <View style={{padding: 30,backgroundColor: '#333333'}}> <Text style={[styles.text,{color: '#fefefe'}]}> Text Element</Text> </View> <Text style={[styles.text,styles.header]}> 在文本元素上设置padding </Text> <View style={{padding: 0,{backgroundColor: '#fe0000',padding: 30}]}> text 元素上设置paddinga </Text> </View>
在View上设置padding很顺利,没有任何问题, 但是如果在inline元素上设置padding, 发现会出现上面的错误, paddingTop和paddingBottom都被挤成marginBottom了。 按理说,不应该对Text做padding处理, 但是确实有这样的问题存在,所以可以将这个问题mark一下。 margin <Text style={[styles.text,styles.header]}> 在正常的View上设置margin </Text> <View style={{backgroundColor: '#333333'}}> <View style={{backgroundColor: '#fefefe',margin: 30}}/> </View> <Text style={[styles.text,styles.header]}> 在文本元素上设置margin </Text> <View style={{backgroundColor: '#333333'}}> <Text style={[styles.text,margin: 30}]}> text 元素上设置margin </Text> <Text style={[styles.text,margin: 30}]}> text 元素上设置margin </Text> </View>
我们知道,对于inline元素,设置margin-left和margin-right有效,top和bottom按理是不会生效的, 但是上图的结果可以看到,实际是生效了的。所以现在给我的感觉是Text元素更应该理解为一个不能设置padding的block。 算了不要猜了, 我们看看官方文档怎么说Text,https://facebook.github.io/react-native/docs/text.html <Text> <Text>First part and </Text> <Text>second part</Text> </Text> // Text container: all the text flows as if it was one // |First part | // |and second | // |part | <View> <Text>First part and </Text> <Text>second part</Text> </View> // View container: each text is its own block // |First part | // |and | // |second part| 也就是如果Text元素在Text里边,可以考虑为inline, 如果单独在View里边,那就是Block。 文本元素首先我们得考虑对于Text元素我们希望有哪些功能或者想验证哪些功能:
先看看文字有哪些支持的style属性/*==========TEXT================*/ Attributes.style = { color string containerBackgroundColor string fontFamily string fontSize number fontStyle enum('normal','italic') fontWeight enum("normal",'bold','100','200','300','400','500','600','700','800','900') lineHeight number textAlign enum("auto",'left','right','center') writingDirection enum("auto",'ltr','rtl') } 实验1, 2, 3<Text style={[styles.text,styles.header]}> 文本元素 </Text> <View style={{backgroundColor: '#333333',padding: 10}}> <Text style={styles.baseText} numberOfLines={5}> <Text style={styles.titleText} onPress={this.onPressTitle}> 文本元素{'n'} </Text> <Text> {'n'}In this example,the nested title and body text will inherit the fontFamily from styles.baseText,but the title provides its own additional styles. The title and body will stack on top of each other on account of the literal newlines,numberOfLines is Used to truncate the text with an elipsis after computing the text layout,including line wrapping,such that the total number of lines does not exceed this number. </Text> </Text> </View> styles = { baseText: { fontFamily: 'Cochin',color: 'white' },titleText: { fontSize: 20,fontWeight: 'bold',} }
从结果来看1,2,3得到验证。 但是不知道各位有没有发现问题, 为什么底部空出了这么多空间, 没有设置高度啊。 我去除
其实官方文档里边把 Text元素的子Text元素的具体实现是怎样的, 感觉这货会有很多bug, 看官文 <Text style={{fontWeight: 'bold'}}> I am bold <Text style={{color: 'red'}}> and red </Text> </Text>
"I am bold and red" 0-9: bold 9-17: bold,red 好吧, 那对于 Text的样式继承实际上React-native里边是没有样式继承这种说法的, 但是对于Text元素里边的Text元素,上面的例子可以看出存在继承。 那既然有继承,问题就来了! 到底是继承的最外层的Text的值呢,还是继承父亲Text的值呢? <Text style={[styles.text,styles.header]}> 文本样式继承 </Text> <View style={{backgroundColor: '#333333',padding: 10}}> <Text style={{color: 'white'}}> <Text style={{color: 'red'}} onPress={this.onPressTitle}> 文本元素{'n'} <Text>我是white还是red呢?{'n'} </Text> </Text> <Text>我应该是white的</Text> </Text> </View>
结果可见是直接继承父亲Text的。 总结
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |