Android|Android UI布局之TableLayout

从字面上了解TableLayout是一种表格式的布局。这样的布局会把包括的元素以行和列的形式进行排列。表格的列数为每一行的最大列数。当然表格里边的单元格是能够为空的。

实例:LayoutDemo
执行效果:
Android|Android UI布局之TableLayout
文章图片


代码清单:
布局文件:table_layout.xml


在上面的布局代码中一共同拥有3行。即3个TableRow,每个TableRow里边都有两个单元格。
TableLayout标签定义了一个表格布局(TableLayout).
TableRow标签定义了表格布局里边的一行。
【Android|Android UI布局之TableLayout】每一行里边能够自由的加入一些组件。比方在上边我们主要加入了button组件和编辑框组件。

Java源码文件:TableLayoutActivity.java

package com.rainsong.layoutdemo; import android.app.Activity; import android.os.Bundle; public class TableLayoutActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.table_layout); } }




    推荐阅读