android 中使用TableLayout實現(xiàn)表單布局效果示例
使用TableLayout表格布局實現(xiàn)表單效果

1、核心知識點

android:divider="@drawable/table_v_divider" android:showDividers="middle|beginning|end"
2、樣式代碼
style樣式
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--灰色8a8a8a18號字體,130寬,主要用于確認(rèn)個人信息表格樣式-->
<style name="style_table_gray6_18_130_text">
<item name="android:layout_width">@dimen/dimen_0</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textSize">@dimen/text_18</item>
<item name="android:textColor">@color/c_gray_6</item>
<item name="android:gravity">center</item>
<item name="android:padding">@dimen/dimen_10</item>
</style>
<!--黑色1c1c1c18號字體-->
<style name="style_table_black1_18_text">
<item name="android:layout_width">@dimen/dimen_0</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textSize">@dimen/text_18</item>
<item name="android:textColor">@color/c_black_1</item>
<item name="android:gravity">center_vertical</item>
<item name="android:singleLine">true</item>
<item name="android:ellipsize">end</item>
<item name="android:padding">@dimen/dimen_10</item>
</style>
</resources>
table_v_divider.xml文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size
android:height="1dp" />
<solid android:color="@color/c_gray_6" />
</shape>
table_h_divider.xml文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size
android:width="1dp" />
<solid android:color="@color/c_gray_6" />
</shape>
顏色
<color name="c_gray_6">#8a8a8a</color>
3、完整代碼如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
style="@style/style_match_background_content">
<LinearLayout
style="@style/style_match_wrap_content"
android:layout_marginTop="@dimen/dimen_30"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="@dimen/dimen_10">
<android.support.v4.widget.Space
style="@style/style_black_2_26_text"
android:layout_weight="1" />
<TextView
style="@style/style_black_2_26_text"
android:gravity="right"
android:layout_weight="1"
android:layout_width="@dimen/dimen_0"
android:text="險種類型:" />
<EditText
android:id="@+id/et_plant_type"
style="@style/style_black_2_26_text"
android:layout_weight="3"
android:layout_width="@dimen/dimen_0"
android:background="@drawable/bg_et_down_selector"
android:hint="請選擇" />
<android.support.v4.widget.Space
style="@style/style_black_2_26_text"
android:layout_weight="1" />
</LinearLayout>
<TableLayout
android:layout_margin="30dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_v_divider"
android:orientation="vertical"
android:showDividers="middle|beginning|end">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="10"
android:text="基本信息" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="1"
android:text="姓名" />
<TextView
android:id="@+id/tv_table_name"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="基本信息" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="1"
android:text="性別" />
<TextView
android:id="@+id/tv_table_sex"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="男" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="2"
android:text="身份證號" />
<TextView
android:id="@+id/tv_table_idnum"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="444444444444444444" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="3"
android:text="個人社保編號" />
<TextView
android:id="@+id/tv_table_ss_num"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="1"
tools:text="110" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="2"
android:text="現(xiàn)參保單位" />
<TextView
android:id="@+id/tv_table_ss_current_insured_unit"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="4"
tools:text="110" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="10"
android:text="參保情況" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="3"
android:text="參保狀態(tài)" />
<TextView
android:id="@+id/tv_table_insured_state"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="參保繳費" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="2"
android:text="現(xiàn)繳費基數(shù)" />
<TextView
android:id="@+id/tv_table_payment_base"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="110" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="3"
android:text="參保起始時間" />
<TextView
android:id="@+id/tv_table_start_time"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="2018-06-12" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="2"
android:text="繳費截止時間" />
<TextView
android:id="@+id/tv_table_pay_end_time"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="2018-06-12" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="3"
android:text="個人賬號總月數(shù)" />
<TextView
android:id="@+id/tv_table_total_accounts"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="2018-06-12" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="2"
android:text="個人賬號存在額" />
<TextView
android:id="@+id/tv_table_personal_account_number"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="2018-06-12" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="3"
android:text="截止上月欠繳月數(shù)" />
<TextView
android:id="@+id/tv_table_not_months"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="2018-06-12" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="2"
android:text="截止上月欠費金額" />
<TextView
android:id="@+id/tv_table_owe_the_amount"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="2018-06-12" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="10"
android:text="其它" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/table_h_divider"
android:orientation="horizontal"
android:showDividers="middle|beginning|end">
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="3"
android:text="中斷開始時間" />
<TextView
android:id="@+id/tv_table_break_start_time"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="2018-06-12" />
<TextView
style="@style/style_table_gray6_18_130_text"
android:layout_width="0dp"
android:layout_weight="2"
android:text="中斷截止時間" />
<TextView
android:id="@+id/tv_table_break_end_time"
style="@style/style_table_black1_18_text"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="2018-06-12" />
</TableRow>
</TableLayout>
</LinearLayout>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
往Android系統(tǒng)中添加服務(wù)的方法教程
最近因為平臺升級,需要在系統(tǒng)中添加一些服務(wù),所以將整個過程總結(jié)一下,下面這篇文章主要給大家介紹了往Android系統(tǒng)中添加服務(wù)的方法教程,需要的朋友可以參考借鑒,下面來一起看看吧。2017-05-05
Android項目開發(fā) 教你實現(xiàn)Periscope點贊效果
這篇文章主要為大家分享了Android項目開發(fā),一步一步教你實現(xiàn)Periscope點贊效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2015-12-12
Android實現(xiàn)網(wǎng)絡(luò)圖片瀏覽器
這篇文章主要為大家詳細(xì)介紹了Android實現(xiàn)網(wǎng)絡(luò)圖片瀏覽器的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-05-05
PopupWindow?RecyclerView實現(xiàn)下拉選擇Spinner示例解析
這篇文章主要介紹了PopupWindow?RecyclerView實現(xiàn)下拉選擇Spinner示例解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-07-07
Android安卓中循環(huán)錄像并檢測內(nèi)存卡容量
這篇文章主要介紹了Android安卓中循環(huán)錄像并檢測內(nèi)存卡容量,當(dāng)內(nèi)存卡空間已滿時,本文還實現(xiàn)自動刪除視頻列表里面的第一個文件,需要的朋友可以參考下2015-06-06
詳解Android如何獲取進程總數(shù),內(nèi)存與任務(wù)列表
在Android開發(fā)中,有時我們需要監(jiān)控設(shè)備的性能,比如查看當(dāng)前運行的進程總數(shù),本文將介紹如何通過Android?API獲取這些信息,希望對大家有所幫助2025-02-02
Android開發(fā)基礎(chǔ)之創(chuàng)建啟動界面Splash Screen的方法
這篇文章主要介紹了Android開發(fā)基礎(chǔ)之創(chuàng)建啟動界面Splash Screen的方法,以實例形式較為詳細(xì)的分析了Android定制啟動界面的布局及功能實現(xiàn)相關(guān)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-10-10
Android中通過view方式獲取當(dāng)前Activity的屏幕截圖實現(xiàn)方法
這篇文章主要介紹了Android中通過view方式獲取當(dāng)前Activity的屏幕截圖實現(xiàn)方法,本文方法相對簡單,容易理解,需要的朋友可以參考下2014-09-09

