徐州网站排名,中国企业黄页大全,discuz网站同步,网站建设外包合同文章目录 GridLayout概述常见属性子控件属性项目结构主要代码 GridLayout概述
GridLayout也名网格布局,该布局与TableLayout类似#xff0c;但与其相比#xff0c;GridLayout会更加的灵活#xff0c;比如
TableLayout不能将两行进行一个合并#xff0c;只能将两列进行一个… 文章目录 GridLayout概述常见属性子控件属性项目结构主要代码 GridLayout概述
GridLayout也名网格布局,该布局与TableLayout类似但与其相比GridLayout会更加的灵活比如
TableLayout不能将两行进行一个合并只能将两列进行一个合并而GridLayout既能合并行也能合并列而且布局也会更加的灵活
常见属性
android:orientation设置水平显示还是垂直显示默认水平显示android:columnCount设置行的显示个数android:rowCount设置列的显示个数
子控件属性
android:layout_column显示在第几列android:layout_columnSpan横向跨几列android:layout_columnWeight横向剩余空间分配方式android:layout_gravity在网格中的显示位置android:layout_row显示在第几行android:layout_rowSpan纵向跨几行android:layout_rowWeight纵向剩余空间分配方式
项目结构 主要代码
activity_main.xml
?xml version1.0 encodingutf-8?
GridLayout xmlns:androidhttp://schemas.android.com/apk/res/androidandroid:layout_widthmatch_parentandroid:layout_heightmatch_parentButtonandroid:layout_heightwrap_contentandroid:layout_widthwrap_contentandroid:text按钮0/Buttonandroid:layout_gravitycenterandroid:layout_columnSpan2android:layout_row1android:layout_column0android:layout_heightwrap_contentandroid:layout_widthwrap_contentandroid:text按钮1/Buttonandroid:layout_rowSpan1android:layout_rowWeight2android:layout_columnWeight1android:layout_heightwrap_contentandroid:layout_widthwrap_contentandroid:text按钮2/Buttonandroid:layout_heightwrap_contentandroid:layout_widthwrap_contentandroid:text按钮3/Buttonandroid:layout_heightwrap_contentandroid:layout_widthwrap_contentandroid:text按钮4//GridLayout