Android 表格布局(TableLayout)

  • Android 表格布局

    Android RelativeLayout将视图组排列成行和列。您将使用<TableRow>元素在表中构建一行。每行有零个或多个单元格;每个单元格可以容纳一个View对象。
    TableLayout容器不显示其行,列或单元格的边界线。
  • TableLayout 属性

    以下是特定于TableLayout的重要属性-
    属性 说明
    android:id 这是唯一标识布局的ID。
    android:collapseColumns 这指定要折叠的列的从零开始的索引。列索引必须用逗号分隔:1,2,5。
    android:shrinkColumns 要缩小的列的从零开始的索引。列索引必须用逗号分隔:1,2,5。
    android:stretchColumns 要拉伸的列的从零开始的索引。列索引必须用逗号分隔:1,2,5。
  • 示例:

    本示例将带您通过简单的步骤,展示如何使用Table Layout创建自己的Android应用程序。请按照以下步骤修改我们在“Hello World示例”一章中创建的Android应用程序-
    1. 您将使用Android Studio创建一个Android应用程序,并将其命名为Demo,位于com.jc2182.demo包下,如Hello World示例一章中所述。
    2. 修改res/layout/activity_main.xml文件的默认内容,以在表格布局中包含几个按钮。
    3. 运行该应用程序以启动Android模拟器并验证在该应用程序中所做更改的结果。
    以下是修改后的主要活动文件src/com.jc2182.demo/MainActivity.java的内容。该文件可以包括每个基本生命周期方法。
    
    package com.jc2182.demo;
    
    import android.app.Activity;
    import android.os.Bundle;
    
    public class MainActivity extends Activity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    }
    
    以下是res/layout/activity_main.xml文件的内容-
    
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    
        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
    
            <TextView
                android:text="时间"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_column="1" />
    
            <TextClock
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/textClock"
                android:layout_column="2" />
    
        </TableRow>
    
        <TableRow>
    
            <TextView
                android:text="名字"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_column="1" />
    
            <EditText
                android:width="200px"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </TableRow>
    
        <TableRow>
    
            <TextView
                android:text="姓氏"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_column="1" />
    
            <EditText
                android:width="100px"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </TableRow>
    
        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
    
            <RatingBar
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/ratingBar"
                android:layout_column="2" />
        </TableRow>
    
        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
    
        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
    
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="提交"
                android:id="@+id/button"
                android:layout_column="2" />
        </TableRow>
    
    </TableLayout>
    
    让我们尝试运行刚刚修改的应用程序。我假设您在进行环境设置时已创建了AVD。要从Android Studio运行该应用,请打开您项目的活动文件之一,然后工具栏中单击“运行”图标。Android studio将应用程序安装在您的AVD上并启动它,如果设置和应用程序一切正常,它将显示在“模拟器”窗口下面-