Android之TableLayout表格布局
生活随笔
收集整理的這篇文章主要介紹了
Android之TableLayout表格布局
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、相關屬性
1.1、常用屬性android:collapseColumns 設置需要被隱藏的列的序列號android:shrinkColumns 設置允許被收縮的列的序列號android:stretchColumns 設置運行被拉伸的列的序列號注意: 列號都是從0開始算,設置多個“1,3”,所有列都生效“*”android:layout_column = ”2“ 表示跳過第二個android:layout_span = ”4“ 表示合并4個單元格1.2、如何確定行數和列數!如何直接往TableLayout中添加組件的話,那個這個組件將占滿一行!如何想一行有多個組件,就添加一個TableRow的容器,把組件放進去!tablerow中組件個數決定列數,列的寬度由最寬的單元格決定!TableRow的寬度是默認的不能修改,高度可以自定義!整個表格布局的寬度取決于父容器的寬度2、示例
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".LoginActivity"android:stretchColumns="0,3"android:gravity="center_vertical"android:background="#66ff66"><TableRow><TextView /><TextViewandroid:layout_height="wrap_content"android:text="用戶名:"/><EditTextandroid:layout_height="wrap_content"/><TextView /></TableRow><TableRow><TextView /><TextViewandroid:layout_height="wrap_content"android:text="密 碼"/><EditTextandroid:layout_height="wrap_content"android:minWidth="200dp"/><TextView /></TableRow><TableRow><TextView /><Buttonandroid:layout_height="wrap_content"android:text="登錄"/><Buttonandroid:layout_width="60dp"android:text="退出"/><TextView /></TableRow></TableLayout>效果圖
?
轉載于:https://www.cnblogs.com/xianfeng-zhang/p/7991696.html
總結
以上是生活随笔為你收集整理的Android之TableLayout表格布局的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 按阅读习惯来高效排列字符串的脚本
- 下一篇: MVVM架构~knockoutjs系列之