首先来看一下表格布局几个常用的属性:
- android:shrinkColumns设置可收缩的列,内容过多就收缩显示到第二行
- android:stretchColumns设置可伸展的列,将空白区域填充满整个列
- android:collapseColumns设置要隐藏的列
列的索引从0开始,通过TableRow确定行,TableRow中的组件数量为列数
来看一下实例
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.tablelayout_login.MainActivity"
android:stretchColumns="0,3"
>
<!-- android:stretchColumns="0,3" 设置第一列第四列可拉伸 -->
<!--四行四列,其中第一列和第四列为空,设置为可拉伸以保证登