对于学习React Native或者前端的同学肯定对Flexbox 的有所了解,因为这是前端领域CSS的一种布局方案,现在google也开源了类似前端Flexbox的项目叫Flexboxlayout,这样android也可以用Flexboxlayout实现类似前端Flexbox的布局。
首先Flexboxlayout有5大布局属性分别是flexDirection,flexWrap,justifyContent ,alignItems ,alignContent,这5个布局属性又对应着不同参数以实现不用的布局效果。具体如下:
1.flexDirection 属性决定主轴的方向(即项目的排列方向)。
对应的参数和效果图如下:
实例代码如下,而我们要改的是app:flexDirection
来实现不同的效果。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.flexbox.FlexboxLayout
android:id="@+id/flexbox_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:flexDirection="row_reverse">
<TextView
android:id="@+id/textview1"
android:layout_width="match_parent"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color1"
android:text="textview1"/>
<TextView
android:id="@+id/textview2"
android:layout_width="match_parent"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color2"
android:text="textview2"/>
<TextView
android:id="@+id/textview3"
android:layout_width="match_parent"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color3"
android:text="textview3"/>
<TextView
android:id="@+id/textview4"
android:layout_width="match_parent"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color4"
android:text="textview4"/>
<TextView
android:id="@+id/textview5"
android:layout_width="match_parent"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color5"
android:text="textview5"/>
<TextView
android:id="@+id/textview6"
android:layout_width="match_parent"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color5"
android:text="textview6"/>
com.google.android.flexbox.FlexboxLayout>
RelativeLayout>
1.当flexDirecition的参数为column时,即app:flexDirection=”column”:
2.当flexDirecition的参数为column时,即app:flexDirection=”column_reverse”:
3.当flexDirecition的参数为column时,即app:flexDirection=”row”:
4.当flexDirecition的参数为column时,即app:flexDirection=”row_reverse”:
2.flexWrap在默认情况下 Flex 跟 LinearLayout 一样,都是不带换行排列的,但是flexWrap属性可以支持换行排列。对应的参数和效果图如下:
实例代码如下:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.flexbox.FlexboxLayout
android:id="@+id/flexbox_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:flexWrap="wrap">
<TextView
android:id="@+id/textview1"
android:layout_width="80dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color1"
android:text="textview1"/>
<TextView
android:id="@+id/textview2"
android:layout_width="100dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color2"
android:text="textview2"/>
<TextView
android:id="@+id/textview3"
android:layout_width="80dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color3"
android:text="textview3"/>
<TextView
android:id="@+id/textview4"
android:layout_width="150dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color4"
android:text="textview4"/>
<TextView
android:id="@+id/textview5"
android:layout_width="100dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color5"
android:text="textview5"/>
<TextView
android:id="@+id/textview6"
android:layout_width="80dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color5"
android:text="textview6"/>
com.google.android.flexbox.FlexboxLayout>
RelativeLayout>
我们通过修改app:flexWrap="wrap"
来实现不同的效果
1.当flexWrap的参数为wrap时,即app:flexWrap=”wrap”:
2.当flexWrap的参数为nowrap时,即app:flexWrap=”nowrap”:
3.当flexWrap的参数为wrap_reverse时,即app:flexWrap=”wrap_reverse”:
3.justifyContent属性定义了项目在主轴上的对齐方式。看解释有点含糊,没关系,待会效果图一目了然,justifyContent对应的参数和含义如下:
实例代码如下
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.flexbox.FlexboxLayout
android:id="@+id/flexbox_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:justifyContent="flex_start">
<TextView
android:id="@+id/textview1"
android:layout_width="80dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color1"
android:text="textview1"/>
<TextView
android:id="@+id/textview2"
android:layout_width="100dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color2"
android:text="textview2"/>
<TextView
android:id="@+id/textview3"
android:layout_width="80dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color3"
android:text="textview3"/>
com.google.android.flexbox.FlexboxLayout>
RelativeLayout>
1.当justifyContent的参数为flex_start时,即app:justifyContent=”flex_start”:
2.当justifyContent的参数为flex_end时,即app:justifyContent=”flex_end”:
3.当justifyContent的参数为center时,即app:justifyContent=”center”:
4.当justifyContent的参数为space_around时,即app:justifyContent=”space_around”:
5.当justifyContent的参数为space-between时,即app:justifyContent=”space-between”:
4.alignItems属性定义项目在副轴轴上如何对齐。(一般默认一般默认情况下,主轴是从左往右的直线,而对应的副轴就是从上忘下),alignItems对应的参数和含义如下:
实例代码如下:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.flexbox.FlexboxLayout
android:id="@+id/flexbox_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:alignItems="flex_start">
<TextView
android:id="@+id/textview1"
android:layout_width="80dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color1"
android:text="textview1"/>
<TextView
android:id="@+id/textview2"
android:layout_width="100dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color2"
android:text="textview2"/>
<TextView
android:id="@+id/textview3"
android:layout_width="80dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color3"
android:text="textview3"/>
com.google.android.flexbox.FlexboxLayout>
RelativeLayout>
1.当alignItems的参数为stretch时,即app:alignItems=”stretch”:
2.当alignItems的参数为flex_start时,即app:alignItems=”flex_start”:
3.当alignItems的参数为flex_end时,即app:alignItems=”flex_end”:
4.当alignItems的参数为center时,即app:alignItems=”center”:
5.当alignItems的参数为baseline时,即app:alignItems=”baseline”:
5.alignContent属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用,其属性如下:
实例代码如下:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.flexbox.FlexboxLayout
android:id="@+id/flexbox_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:flexWrap="wrap"
app:alignContent="flex_start">
<TextView
android:id="@+id/textview1"
android:layout_width="50dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color1"
android:text="textview1"/>
<TextView
android:id="@+id/textview2"
android:layout_width="100dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color2"
android:text="textview2"/>
<TextView
android:id="@+id/textview3"
android:layout_width="90dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color3"
android:text="textview3"/>
<TextView
android:id="@+id/textview4"
android:layout_width="60dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color1"
android:text="textview4"/>
<TextView
android:id="@+id/textview5"
android:layout_width="100dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color2"
android:text="textview5"/>
<TextView
android:id="@+id/textview6"
android:layout_width="90dp"
android:layout_height="80dp"
android:gravity="center"
android:background="@color/color3"
android:text="textview6"/>
com.google.android.flexbox.FlexboxLayout>
RelativeLayout>
1.当alignContent的参数为stretch时,即app:alignContent=”stretch”:
2.当alignContent的参数为flex_start时,即app:alignContent=”flex_start”:
3.当alignContent的参数为flex_end时,即app:alignContent=”flex_end”:
4.当alignContent的参数为center时,即app:alignContent=”center”:
5.当alignContent的参数为space_around时,即app:alignContent=”space_around”:
6.当alignContent的参数为space_between时,即app:alignContent=”space_between”:
除了这些主要属性之外,还有其他的属性:
1. layout_flexGrow(表示元素的权重属性)
<com.google.android.flexbox.FlexboxLayout
android:layout_width="300dp"
android:layout_height="wrap_content">
"0dp"
android:layout_height="48dp"
android:background="@color/color1"
app:layout_flexGrow="2"/>
"0dp"
android:layout_height="48dp"
android:background="@color/color2"
app:layout_flexGrow="1"/>
com.google.android.flexbox.FlexboxLayout>
2.layout_flexShrink(表示空间不足时子控件的缩放比例,0表示不缩放)
<com.google.android.flexbox.FlexboxLayout
android:layout_width="300dp"
android:layout_height="wrap_content">
"@+id/text1"
android:layout_width="400dp"
android:layout_height="48dp"
app:layout_flexShrink="2"
android:background="@color/color1"/>
"@+id/text2"
app:layout_flexShrink="1"
android:layout_width="300dp"
android:layout_height="48dp"
android:background="@color/color2"/>
com.google.android.flexbox.FlexboxLayout>
总的300dp因为宽度不足,所以text1就缩小原来的三分之二,text2缩小为原来的三分之一。
3.layout_order(可以控制排列的顺序,负值在前,正值灾后,按照从小到大的顺序依次排列)
<com.google.android.flexbox.FlexboxLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
"100dp"
android:layout_height="48dp"
app:layout_order="2"
android:text="color1"
android:gravity="center"
android:background="@color/color1"/>
"100dp"
android:layout_height="48dp"
app:layout_order="1"
android:text="color2"
android:gravity="center"
android:background="@color/color2"/>
com.google.android.flexbox.FlexboxLayout>
4.layout_flexBasisPercent(属性定义了在分配多余空间之前,子元素占据的main size主轴空间,浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即子元素的本来大小。)
<com.google.android.flexbox.FlexboxLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:flexWrap="wrap">
"@+id/flexbox"
android:layout_width="100dp"
android:layout_height="100dp"
android:text="text1"
android:gravity="center"
android:background="@color/color1"/>
"100dp"
android:layout_height="100dp"
android:text="text2"
android:gravity="center"
app:layout_flexBasisPercent="50%"
android:background="@color/color2"/>
com.google.android.flexbox.FlexboxLayout>
5.layout_alignSelf(属性允许单个子元素有与其他子元素不一样的对齐方式,可覆盖 alignItems 属性。默认值为auto,表示继承父元素的 alignItems 属性,如果没有父元素,则等同于stretch。)
<com.google.android.flexbox.FlexboxLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:alignItems="flex_start">
"100dp"
android:layout_height="100dp"
android:text="text1"
android:gravity="center"
android:background="@color/color1"/>
"100dp"
android:layout_height="100dp"
android:text="text2"
android:gravity="center"
app:layout_alignSelf="center"
android:background="@color/color2"/>
"100dp"
android:layout_height="100dp"
android:text="text2"
android:gravity="center"
android:background="@color/color3"/>
com.google.android.flexbox.FlexboxLayout>
最后就是FlexboxLayoutManager,这也是最新FlexBoxLayout新出的功能,以前我们用流式布局的时候大部分不自己实现的话都是用第三方的库实现,现在有了这个就可以轻松的实现流式布局,并FlexboxLayoutManager
就像LinearLayoutManager等那样可以用RecyclerView加载,即可以不用一次全部加载又可以轻松加载多条数据。使用FlexboxLayoutManager很简单,跟一般的布局控制器没有区别,实例代码如下:
RecyclerView recycler_view=......
FlexboxLayoutManager flexboxLayoutManager=new
FlexboxLayoutManager(this);
flexboxLayoutManager.setFlexWrap(FlexWrap.WRAP);
recycler_view.setLayoutManager(flexboxLayoutManager);
mainAdapter=new MainAdapter(this);
recycler_view.setAdapter(mainAdapter);
我们通过FlexboxLayoutManager就可以设置FlexBoxLayout的各种属性,而上面的MainAdapter就是和普通的Adapter没区别。