Android之TableLayout表格版面配置

來源:互聯網
上載者:User

標籤:效果   com   bsp   ica   div   cti   運行   tools   etc   

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 />        <TextView            android:layout_height="wrap_content"            android:text="使用者名稱:"/>        <EditText            android:layout_height="wrap_content"            />        <TextView />    </TableRow>    <TableRow>        <TextView />        <TextView            android:layout_height="wrap_content"            android:text="密  碼"/>        <EditText            android:layout_height="wrap_content"            android:minWidth="200dp"/>        <TextView />    </TableRow>    <TableRow>        <TextView />        <Button            android:layout_height="wrap_content"            android:text="登入"/>        <Button            android:layout_width="60dp"            android:text="退出"/>        <TextView />    </TableRow></TableLayout>

 

Android之TableLayout表格版面配置

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.