Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> React-Native之flexbox布局篇

React-Native之flexbox布局篇

編輯:關於Android編程

這篇博客稍微講解下React-Native中的布局。比較簡單。RN的而布局是用css中的flexbox布局,所以布局起來與android傳統的布局樣式有點像。接下來就結合圖片一起來看看。

常用屬性講解

RN的flexbox主要有以下幾個屬性alignItems,alignSelf,flex,flexDirection,flexWrap,justifyContent。

flexDirection

該屬性用於指定主軸的方向。即指定子view的布局方向。它有兩個值可設置。

row:橫向布局。 column:縱向布局。

這個屬性很簡單,先看row的代碼段:

<code class=" hljs xml">render:function(){      
  return(
   <view style="{styles.flexStyle}">
    <view style="{styles.flexSub}/">
    <view style="{styles.flexSub}/">
    <view style="{styles.flexSub}/">
    <view style="{styles.flexSub}/">
    </view>
  );
}
…………
var styles = StyleSheet.create({

  flexStyle:{
    height:600,
    flexDirection:'row',
  },
    flexSub:{
    flex:1,
    height:300,
      backgroundColor:'#333333',
      marginRight:10,
  },
)}</view></view></view></view></code>

一個View裡有四個小View,小View的底色是黑的,看下效果圖:
這裡寫圖片描述
可以看到,四個view橫向的進行布局。那改成column呢,樣式修改如下:

var styles = StyleSheet.create({
   flexStyle:{
    height:600,
    flexDirection:'column',
  },
  flexSub:{
    flex:1,
    height:100,
      backgroundColor:'#333333',
      marginBottom:10,
  },
)}

看下效果圖:
這裡寫圖片描述
就是縱向布局。

alignItems

用於定義子組件在垂直方向上的對齊方式。有四個屬性可設置:flex-start,flex-end,center,stretch。

flex-start:與父組件的頂部對齊。 flex-end:與父組件的底部對齊。 center:處於父容器的中間位置。 stretch:豎直上填充整個容器。

首先來看下flex-start,順便改了下子組件的顏色,代碼如下:

return(
    
    
    
    
    
    
  );
  ……
var styles = StyleSheet.create({

  flexStyle:{
    height:600,
    flexDirection: 'row',
      alignItems:'flex-start',
  },
  flexSub:{
    flex:1,
    height:300,
      backgroundColor:'#333333',
      marginBottom:10,
  },
  flexSelf1:{
    flex:1,
    height:300,
      backgroundColor:'#ff0000',
      marginRight:10,
  },
  flexSelf2:{
    flex:1,
    height:300,
      backgroundColor:'#00ff00',
      marginRight:10,
  },
  flexSelf3:{
    flex:1,
      height:300,
      backgroundColor:'#0000ff',
      marginRight:10,
  },
  flexSelf4:{
    flex:1,
    height:300,
      backgroundColor:'#333333',
      marginRight:10,
  }  
});

看下效果圖:
這裡寫圖片描述
就是和父容器頂部對齊。
看下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"> return(
    <view style="{styles.flexStyle}">
    <view style="{styles.flexSub}/">

    </view>
  );
  ……
  var styles = StyleSheet.create({

  flexStyle:{
    height:600,
    width:400,
    flexDirection: 'row',
    alignItems:'center',
    justifyContent:'center',
  },
  flexSub:{
    width:100,
    height:300,
      backgroundColor:'#333333',
      marginBottom:10,
  },
  });</view></code>

父容器設置了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"> return(
    <view style="{styles.flexStyle}">
    <view style="{styles.flexSelf1}/">
    <view style="{styles.flexSelf2}/">
    <view style="{styles.flexSelf3}/">
    <view style="{styles.flexSelf4}/">
    </view>
  );
……
var styles = StyleSheet.create({
  flexStyle:{
    height:600,
    flexDirection:'row',
  },

  flexSelf1:{
    flex:1,
    alignSelf:'flex-start',

    height:300,
      backgroundColor:'#ff0000',
      marginRight:10,
  },
  flexSelf2:{
    flex:1,
    alignSelf:'flex-end',

    height:300,
      backgroundColor:'#00ff00',
      marginRight:10,
  },
  flexSelf3:{
    flex:1,
    alignSelf:'stretch',

      backgroundColor:'#0000ff',
      marginRight:10,
  },
  flexSelf4:{
    flex:1,
    alignSelf:'auto',
    height:300,
      backgroundColor:'#333333',
      marginRight:10,
  },
  )}</view></view></view></view></code>

以上幾個子View設置了不同的樣式 ,看下效果圖:
這裡寫圖片描述
看到了,flex-start就是頂部對齊,flex-end就是與底部對齊。第三個View是streth,垂直拉伸了。第四個View是auto,因為設置了高度,所以顯示如圖所示。沒有顯示center,但它的效果可想而知,就不再演示啦。

flex

flex指設置伸縮項目的伸縮樣式,可以把它類比成android中的weight屬性。
看一個代碼就清楚它的用法了。

<code class=" hljs cs">  return(
    <view style="{styles.flexStyle}">
    <view style="{styles.flexSelf1}/">
    <view style="{styles.flexSelf1}/">
    <view style="{styles.flexSelf2}/">
    <view style="{styles.flexSelf3}/">
    </view>
  );
  ……
var styles = StyleSheet.create({

  flexStyle:{
    height:600,
    flexDirection: 'row',
    flex:1,
  },
  flexSub:{

    height:300,
      backgroundColor:'#333333',
      marginBottom:10,
  },
  flexSelf1:{
    flex:1,
      backgroundColor:'#ff0000',
      marginRight:10,
  },
  flexSelf2:{
    flex:2,

      backgroundColor:'#00ff00',
      marginRight:10,
  },
  flexSelf3:{
    flex:4,

      backgroundColor:'#0000ff',
      marginRight:10,
  },
  });</view></view></view></view></code>

效果圖如下:
這裡寫圖片描述
可以看到,flex為2的組件寬度為flex為1寬度的兩倍,flex為4組件寬度則為flex為1的組件寬度的4倍。

flexWrap

其實這些屬性都是CSS原有的屬性,只是RN只支持了部分的屬性。flexWrap用於設置是否可換行,有兩個屬性可設置nowrap和wrap。

nowrap:即使空間不夠也不換行。 wrap:空間不夠的話自動換行。
如設置成wrap時,空間不夠效果圖如下:
這裡寫圖片描述
第四個放不下,就換行了。
這篇博客對RN的flexbox進行一個介紹,內容很簡單,也是對自己學的東西的一個鞏固。
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved