TableLayout示例

来源:互联网 发布:网络打麻将算赌博吗 编辑:程序博客网 时间:2024/06/05 19:43

   在TableLayout中每加入一个TableRow就是加入一行,然后在TableRow中每加入一个控件,就是在该行中加入一列。TableRow中的控件不能指定宽度

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent" 
android:stretchColumns="1">              //如果表格不能占满屏幕,就将第二列拉伸(0就是拉伸第一列)<TableRow><TextViewandroid:layout_height="wrap_content"android:text="Account:" /><EditTextandroid:id="@+id/account"android:layout_height="wrap_content"android:hint="Input your account" /></TableRow><TableRow><TextViewandroid:layout_height="wrap_content"android:text="Password:" /><EditTextandroid:id="@+id/password"android:layout_height="wrap_content"android:inputType="textPassword" /></TableRow><TableRow><Buttonandroid:id="@+id/login"android:layout_height="wrap_content"android:layout_span="2"             //让登录按钮占两列android:text="Login" /></TableRow></TableLayout>



原创粉丝点击