搞定 Android 布局1:FlexboxLayout 弹性布

2017-06-26  本文已影响2307人  louisgeek

1 开始使用

  compile 'com.google.android:flexbox:0.3.0-alpha4'

2 常用父布局属性

row (default): 默认值,主轴为水平方向,从左到右。
row_reverse:主轴为水平方向,从右到左。
column:主轴为竖直方向,从上到下。
column_reverse:主轴为竖直方向,从下往上。
app:flexDirection
noWrap (default):不换行,一行显示完子元素。
wrap: 按正常方向换行。
wrap_reverse: 按反方向换行。

【例图其他属性】

 app:flexDirection="row"
app:flexWrap
flex_start (default): 默认值,左对齐
flex_end: 右对齐
center: 居中对齐
space_between: 两端对齐,中间间隔相同
space_around: 每个元素两侧的距离相等。所以,项目之间的间隔比项目与边框的间隔大一倍。

【例图其他属性】

 app:flexDirection="row"
 app:flexWrap="wrap"
app:justifyContent
stretch (default) :默认值,如果item没有设置高度,则充满容器高度。
flex_start:交叉轴的起点对齐。
flex_end:交叉轴的终点对齐。
center:交叉轴的中点对齐。
baseline:第一行内容的基线对齐

【例图其他属性】

    app:flexDirection="row"
    app:flexWrap="wrap"
    app:justifyContent="flex_start"
app:alignItems
stretch (default): 默认值,充满交叉轴的高度(需要alignItems 的值也为stretch 才有效)。
flex_start: 与交叉轴起点对齐。
flex_end: 与交叉轴终点对齐。
center: 与交叉轴居中对齐。
space_between: 交叉轴两端对齐,中间间隔相等。
space_around: 到交叉轴两端的距离相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。

【例图其他属性】1,2

    app:flexDirection="row"
    app:flexWrap="wrap"
    app:justifyContent="flex_start"
//上面一排图片
    app:alignItems="stretch"
//下面一排图片
    app:alignItems="flex_start"
app:alignContent 图1图2

【例图其他属性】3

    app:flexDirection="row"
    app:flexWrap="wrap"
    app:justifyContent="flex_start"
    app:alignItems="flex_end"
app:alignContent 图3 定义app:alignContent 顺序和 图1图2一致

【例图其他属性】4

    app:flexDirection="row"
    app:flexWrap="wrap"
    app:justifyContent="flex_start"
    app:alignItems="center"
app:alignContent 图4 定义app:alignContent 顺序和 图1图2一致

【例图其他属性】5

    app:flexDirection="row"
    app:flexWrap="wrap"
    app:justifyContent="flex_start"
    app:alignItems="baseline"
app:alignContent 图5 定义app:alignContent 顺序和 图1图2一致
showDivider 控制显示水平和垂直方向的分割线,值为none | beginning | middle | end其中的一个或者多个。
showDividerHorizontal 控制显示水平方向的分割线,值为none | beginning | middle | end其中的一个或者多个。
showDividerVertical 控制显示垂直方向的分割线,值为none | beginning | middle | end其中的一个或者多个。

dividerDrawable 设置水平和垂直方向的分割线Drawable。
dividerDrawableHorizontal 设置Flex 轴线之间水平方向的分割线Drawable。
dividerDrawableVertical 设置子元素垂直方向的分割线Drawable。

3 常用子元素属性

auto (default) 继承父元素的alignItems
flex_start
flex_end
center
baseline
stretch

4 FlexboxLayoutManager 配合 RecyclerView 使用

mRecyclerView = (RecyclerView)findViewById(R.id.test_recyclerView);
FlexboxLayoutManager layoutManager = new FlexboxLayoutManager();
layoutManager.setFlexWrap(FlexWrap.WRAP);        
layoutManager.setFlexDirection(FlexDirection.ROW);   
     layoutManager.setAlignItems(AlignItems.STRETCH);        
layoutManager.setJustifyContent(JustifyContent.FLEX_START);
mRecyclerView.setLayoutManager(layoutManager);
//adapter 中设置子元素的放大比例
 ImageView IV=  rvViewHolder.getView(R.id.image_src);
       IV.setImageResource(mData);

        ViewGroup.LayoutParams lp = IV.getLayoutParams();
        if (lp instanceof FlexboxLayoutManager.LayoutParams) {
            FlexboxLayoutManager.LayoutParams flexboxLp =
                    (FlexboxLayoutManager.LayoutParams) mImageView.getLayoutParams();
            flexboxLp.setFlexGrow(1.0f);
        }

参考文档

上一篇下一篇

猜你喜欢

热点阅读