http://blog.csdn.net/u014486880/article/details/51385688
这篇博客稍微讲解下React-Native中的布局。比较简单。RN的而布局是用css中的flexBox布局,所以布局起来与Android传统的布局样式有点像。接下来就结合图片一起来看看。
常用属性讲解
RN的flexBox主要有以下几个属性alignItems,alignSelf,flex,flexDirection,flexWrap,justifyContent。
flexDirection
该属性用于指定主轴的方向。即指定子view的布局方向。它有两个值可设置。
- row:横向布局。
- column:纵向布局。
<code class="hljs xml has-numbering">render:function(){ return( <span class="hljs-tag"><<span class="hljs-title">View</span> <span class="hljs-attribute">style</span>=<span class="hljs-value">{styles.flexStyle}</span>></span> <span class="hljs-tag"><<span class="hljs-title">View</span> <span class="hljs-attribute">style</span>= {<span class="hljs-attribute">styles.flexSub</span>}/></span> <span class="hljs-tag"><<span class="hljs-title">View</span> <span class="hljs-attribute">style</span>= {<span class="hljs-attribute">styles.flexSub</span>}/></span> <span class="hljs-tag"><<span class="hljs-title">View</span> <span class="hljs-attribute">style</span>= {<span class="hljs-attribute">styles.flexSub</span>}/></span> <span class="hljs-tag"><<span class="hljs-title">View</span> <span class="hljs-attribute">style</span>= {<span class="hljs-attribute">styles.flexSub</span>}/></span> <span class="hljs-tag"></<span class="hljs-title">View</span>></span> ); } ………… var styles = StyleSheet.create({ flexStyle:{ height:600,flexDirection:'row',},flexSub:{ flex:1,height:300,backgroundColor:'#333333',marginRight:10,)}</code><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li></ul><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li></ul>
一个View里有四个小View,小View的底色是黑的,看下效果图:
可以看到,四个view横向的进行布局。那改成column呢,样式修改如下:
<code class="hljs cs has-numbering"><span class="hljs-keyword">var</span> styles = StyleSheet.create({ flexStyle:{ height:<span class="hljs-number">600</span>,flexDirection:<span class="hljs-string">'column'</span>,flexSub:{ flex:<span class="hljs-number">1</span>,height:<span class="hljs-number">100</span>,backgroundColor:<span class="hljs-string">'#333333'</span>,marginBottom:<span class="hljs-number">10</span>,)}</code><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li></ul><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li></ul>
看下效果图:
就是纵向布局。
alignItems
用于定义子组件在垂直方向上的对齐方式。有四个属性可设置:flex-start,flex-end,center,stretch。
- flex-start:与父组件的顶部对齐。
- flex-end:与父组件的底部对齐。
- center:处于父容器的中间位置。
- stretch:竖直上填充整个容器。
首先来看下flex-start,顺便改了下子组件的颜色,代码如下:
<code class="hljs cs has-numbering"><span class="hljs-keyword">return</span>( <View style={styles.flexStyle}> <View style= {styles.flexSelf1}/> <View style= {styles.flexSelf2}/> <View style= {styles.flexSelf3}/> <View style= {styles.flexSelf4}/> </View> ); …… <span class="hljs-keyword">var</span> styles = StyleSheet.create({ flexStyle:{ height:<span class="hljs-number">600</span>,flexDirection: <span class="hljs-string">'row'</span>,alignItems:<span class="hljs-string">'flex-start'</span>,height:<span class="hljs-number">300</span>,flexSelf1:{ flex:<span class="hljs-number">1</span>,backgroundColor:<span class="hljs-string">'#ff0000'</span>,marginRight:<span class="hljs-number">10</span>,flexSelf2:{ flex:<span class="hljs-number">1</span>,backgroundColor:<span class="hljs-string">'#00ff00'</span>,flexSelf3:{ flex:<span class="hljs-number">1</span>,backgroundColor:<span class="hljs-string">'#0000ff'</span>,flexSelf4:{ flex:<span class="hljs-number">1</span>,} }); </code><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li><li>25</li><li>26</li><li>27</li><li>28</li><li>29</li><li>30</li><li>31</li><li>32</li><li>33</li><li>34</li><li>35</li><li>36</li><li>37</li><li>38</li><li>39</li><li>40</li><li>41</li><li>42</li><li>43</li><li>44</li><li>45</li><li>46</li><li>47</li><li>48</li></ul><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li><li>25</li><li>26</li><li>27</li><li>28</li><li>29</li><li>30</li><li>31</li><li>32</li><li>33</li><li>34</li><li>35</li><li>36</li><li>37</li><li>38</li><li>39</li><li>40</li><li>41</li><li>42</li><li>43</li><li>44</li><li>45</li><li>46</li><li>47</li><li>48</li></ul>
看下效果图:
就是和父容器顶部对齐。
看下flex-end属性,代码就不贴出来了,只要改alignItems属性就好了。效果图如下:
可以看到,和底部对齐了。
再看下center,这个可以说是用的最多的属性,它会让子组件位于父容器的中间位置,看下效果图:
stretch就是竖直填充,前提是子组件没有设置height属性。看下效果图:
justifyContent
有竖直就水平。justifyContent和alignItems是相对的。它有五个属性可以设置,分别是flex-start,flex-end,center,space-between,space-around。
* flex-start:伸缩项目与父容器左端靠齐。
* flex-end:与父容器右端靠齐。
* center:水平居中。
* space-between:第一个子组件位于父容器左端,最后一个子组件位于父容器最右端。然后平均分配在父容器水平方向上。
* space-around:所有子组件平均分配在父容器的水平方向上,左右都有留空隙。
先看水平居中(center)的,先看下代码:
<code class="hljs cs has-numbering"> <span class="hljs-keyword">return</span>( <View style={styles.flexStyle}> <View style= {styles.flexSub}/> </View> ); …… <span class="hljs-keyword">var</span> styles = StyleSheet.create({ flexStyle:{ height:<span class="hljs-number">600</span>,width:<span class="hljs-number">400</span>,alignItems:<span class="hljs-string">'center'</span>,justifyContent:<span class="hljs-string">'center'</span>,flexSub:{ width:<span class="hljs-number">100</span>,});</code><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li></ul><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li></ul>
父容器设置了justifyContent:’center’属性,所以理论上子组件应该会水平剧中,来看下是否正确。如下:
justifyContent:’flex-start’,水平居左:
justifyContent:’flex-end’,水平居右:
这些都挺简单的,来看下space-between和space-around的区别,先看下space-between的效果图:
可以看到它左右都不留空隙。均匀分布。
再看下space-around的效果图:
它左右都留有空隙,是平均的位于整个界面的水平方向上。
alignSelf
该属性用来设置单独组件的竖直对齐方式,与alignItem有点像。有五个属性可以设置,auto,flex-start,flex-end,center,streth。
* auto:按照自身设置的宽高来显示,如果没设置,效果跟streth一样。
* flex-start:与父容器顶部对齐。
* flex-end:与父容器底部对齐。
* center:位于垂直位置。
* streth:垂直拉伸。
这个用法跟上面的很像,只是它用于单个组件,如本例子的子View中,看下代码:
<code class="hljs cs has-numbering"> <span class="hljs-keyword">return</span>( <View style={styles.flexStyle}> <View style= {styles.flexSelf1}/> <View style= {styles.flexSelf2}/> <View style= {styles.flexSelf3}/> <View style= {styles.flexSelf4}/> </View> ); …… <span class="hljs-keyword">var</span> styles = StyleSheet.create({ flexStyle:{ height:<span class="hljs-number">600</span>,flexDirection:<span class="hljs-string">'row'</span>,alignSelf:<span class="hljs-string">'flex-start'</span>,alignSelf:<span class="hljs-string">'flex-end'</span>,alignSelf:<span class="hljs-string">'stretch'</span>,alignSelf:<span class="hljs-string">'auto'</span>,)}</code><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li><li>25</li><li>26</li><li>27</li><li>28</li><li>29</li><li>30</li><li>31</li><li>32</li><li>33</li><li>34</li><li>35</li><li>36</li><li>37</li><li>38</li><li>39</li><li>40</li><li>41</li><li>42</li><li>43</li><li>44</li><li>45</li><li>46</li></ul><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li><li>25</li><li>26</li><li>27</li><li>28</li><li>29</li><li>30</li><li>31</li><li>32</li><li>33</li><li>34</li><li>35</li><li>36</li><li>37</li><li>38</li><li>39</li><li>40</li><li>41</li><li>42</li><li>43</li><li>44</li><li>45</li><li>46</li></ul>
以上几个子View设置了不同的样式 ,看下效果图:
看到了,flex-start就是顶部对齐,flex-end就是与底部对齐。第三个View是streth,垂直拉伸了。第四个View是auto,因为设置了高度,所以显示如图所示。没有显示center,但它的效果可想而知,就不再演示啦。
flex
flex指设置伸缩项目的伸缩样式,可以把它类比成android中的weight属性。
看一个代码就清楚它的用法了。
<code class="hljs cs has-numbering"> <span class="hljs-keyword">return</span>( <View style={styles.flexStyle}> <View style= {styles.flexSelf1}/> <View style= {styles.flexSelf1}/> <View style= {styles.flexSelf2}/> <View style= {styles.flexSelf3}/> </View> ); …… <span class="hljs-keyword">var</span> styles = StyleSheet.create({ flexStyle:{ height:<span class="hljs-number">600</span>,flex:<span class="hljs-number">1</span>,flexSub:{ height:<span class="hljs-number">300</span>,flexSelf2:{ flex:<span class="hljs-number">2</span>,flexSelf3:{ flex:<span class="hljs-number">4</span>,});</code><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li><li>25</li><li>26</li><li>27</li><li>28</li><li>29</li><li>30</li><li>31</li><li>32</li><li>33</li><li>34</li><li>35</li><li>36</li><li>37</li><li>38</li><li>39</li><li>40</li></ul><ul class="pre-numbering" style=""><li>1</li><li>2</li><li>3</li><li>4</li><li>5</li><li>6</li><li>7</li><li>8</li><li>9</li><li>10</li><li>11</li><li>12</li><li>13</li><li>14</li><li>15</li><li>16</li><li>17</li><li>18</li><li>19</li><li>20</li><li>21</li><li>22</li><li>23</li><li>24</li><li>25</li><li>26</li><li>27</li><li>28</li><li>29</li><li>30</li><li>31</li><li>32</li><li>33</li><li>34</li><li>35</li><li>36</li><li>37</li><li>38</li><li>39</li><li>40</li></ul>
效果图如下:
可以看到,flex为2的组件宽度为flex为1宽度的两倍,flex为4组件宽度则为flex为1的组件宽度的4倍。
flexWrap
其实这些属性都是CSS原有的属性,只是RN只支持了部分的属性。flexWrap用于设置是否可换行,有两个属性可设置nowrap和wrap。