GridLayout 使用

GridLayout 使用

GridLayout 是一个强大的网格布局。

基本属性

  • android:columnCount 整数,最多的列数
  • android:rowCount 整数,最多的行数

根据上面两参数,GridLayout 将布局划分为 columnCount 列、rowCount 行的网格布局



上面既是将 GridLayout 设置为一个三列、两行的网格。每一个单元格,是 GridLayout 占用的最小单位。

单元格位置控制

  • android:layout_column 整数n,在哪一列开始显示n=[0, 最大列-1]
  • android:layout_columnSpan 整数k,指定元素横跨几列,需要注意保证n+k <= 最大列数
  • android:layout_row 指定从哪一行开始显示,规则同列数
  • android:layout_rowSpan 纵向跨几行,规则同列

上面的四个属性可以控制单元格的显示位置,及跨行显示时占用的单元格

注意:如果一个单元格没有指定希望占据的单元格的行和列索引,GridLayout将使用它的orientation,rowCount和columnCount属性自动分配单元格的位置。

  • 设置位置
GridLayout 使用_第1张图片
设置位置
    

        
  • 设置跨行、跨列显示

    GridLayout 使用_第2张图片
    跨行、跨列显示
    

        

单元格的填充方式

  • center
  • center_horizontal
  • center_vertical
  • top
  • left
  • bottom
  • right
  • start
  • end
  • fill
  • fill_vertical
  • fill_horizontal
  • clip_vertical
  • clip_horizontal
使用的话就像这样
android:layout_gravity="fill_vertical|fill_horizontal"

单元格的比重

  • 在 android 版本 21 以上加入了比重这个属性

    • android:layout_columnWeight="1"
    • android:layout_rowWeight="1"

    在使用上跟 Linearlayout 类似。

    之前也说了是 android 版本 21 以上,如果你应用的 minSdkVersion 小于 21 ,不好意思是不能用的。但google 爸爸,为我们提供了兼容版本。你只需要 :

    1. 引入兼容包:compile 'com.android.support:gridlayout-v7:23.0.0'
    2. 把布局中的 GridLayout 替换成 android.support.v7.widget.GridLayout 即可

    不过值得注意的是官方文档有这个一句

    Interpretation of GONE

    For layout purposes, GridLayout treats views whose visibility status is GONE

    , as having zero width and height. This is subtly different from the policy of ignoring views that are marked as GONE outright. If, for example, a gone-marked view was alone in a column, that column would itself collapse to zero width if and only if no gravity was defined on the view. If gravity was defined, then the gone-marked view has no effect on the layout and the container should be laid out as if the view had never been added to it. GONE views are taken to have zero weight during excess space distribution.

    These statements apply equally to rows as well as columns, and to groups of rows or columns

    能力有限无法理解,关于单元格的 android:visibility="gone" 还需要实践

你可能感兴趣的:(GridLayout 使用)