版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領
文檔簡介
【移動應用開發(fā)技術】怎么在android中利用TableLayout實現(xiàn)一個表單布局效果
這篇文章給大家介紹怎么在android中利用TableLayout實現(xiàn)一個表單布局效果,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。1、核心知識點android:divider="@drawable/table_v_divider"
android:showDividers="middle|beginning|end"2、樣式代碼style樣式<?xml
version="1.0"
encoding="utf-8"?>
<resources>
<!--灰色8a8a8a18號字體,130寬,主要用于確認個人信息表格樣式-->
<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="/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="/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="/apk/res/android"
xmlns:tools="/tools"
android:orientation="vertical"
>
<LinearLayout
android:layout_marginTop="@dimen/dimen_30"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="@dimen/dimen_10">
<android.support.v4.widget.Space
android:layout_weight="1"
/>
<TextView
android:gravity="right"
android:layout_weight="1"
android:layout_width="@dimen/dimen_0"
android:text="險種類型:"
/>
<EditText
android:id="@+id/et_plant_type"
android:layout_weight="3"
android:layout_width="@dimen/dimen_0"
android:background="@drawable/bg_et_down_selector"
android:hint="請選擇"
/>
<android.support.v4.widget.Space
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
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
android:layout_width="0dp"
android:layout_weight="1"
android:text="姓名"
/>
<TextView
android:id="@+id/tv_table_name"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="基本信息"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:text="性別"
/>
<TextView
android:id="@+id/tv_table_sex"
android:layout_width="0dp"
android:layout_weight="2"
tools:text="男"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:text="身份證號"
/>
<TextView
android:id="@+id/tv_table_idnum"
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
android:layout_width="0dp"
android:layout_weight="3"
android:text="個人社保編號"
/>
<TextView
android:id="@+id/tv_table_ss_num"
android:layout_width="0dp"
android:layout_weight="1"
tools:text="110"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:text="現(xiàn)參保單位"
/>
<TextView
android:id="@+id/tv_table_ss_current_insured_unit"
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
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
android:layout_width="0dp"
android:layout_weight="3"
android:text="參保狀態(tài)"
/>
<TextView
android:id="@+id/tv_table_insured_state"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="參保繳費"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:text="現(xiàn)繳費基數(shù)"
/>
<TextView
android:id="@+id/tv_table_payment_base"
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
android:layout_width="0dp"
android:layout_weight="3"
android:text="參保起始時間"
/>
<TextView
android:id="@+id/tv_table_start_time"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="2018-06-12"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:text="繳費截止時間"
/>
<TextView
android:id="@+id/tv_table_pay_end_time"
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
android:layout_width="0dp"
android:layout_weight="3"
android:text="個人賬號總月數(shù)"
/>
<TextView
android:id="@+id/tv_table_total_accounts"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="2018-06-12"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:text="個人賬號存在額"
/>
<TextView
android:id="@+id/tv_table_personal_account_number"
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
android:layout_width="0dp"
android:layout_weight="3"
android:text="截止上月欠繳月數(shù)"
/>
<TextView
android:id="@+id/tv_table_not_months"
android:layout_width="0dp"
android:layout_weight="3"
tools:text="2018-06-12"
/>
<TextView
android:layout_width="0dp"
android:layout_weight="2"
android:text="截止上月欠費金額"
/>
<TextView
android:id="@+id/tv_table_owe_the_amount"
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
android:layout_width="0dp"
android:layout_weight="10"
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年阻燃跳線項目可行性研究報告
- 2025年中國阻燃紙行業(yè)發(fā)展運行現(xiàn)狀及投資潛力預測報告
- 二零二五年度地質(zhì)災害沉降觀測數(shù)據(jù)采集與分析合同4篇
- 2020-2025年中國北斗接收機行業(yè)發(fā)展趨勢預測及投資戰(zhàn)略咨詢報告
- 2025年中國常州市服裝行業(yè)發(fā)展?jié)摿Ψ治黾巴顿Y戰(zhàn)略咨詢報告
- 2025年水文站述職報告(三)
- 二零二五年度大學生實習就業(yè)實習補貼及就業(yè)指導合同4篇
- 2025年單頭煮食車項目投資可行性研究分析報告
- 2024鋁合金材料供應及加工協(xié)議版B版
- 2024銅門智能鎖具配套銷售合同3篇
- 電線電纜加工質(zhì)量控制流程
- 山東省淄博市張店區(qū)祥瑞園小學?-2024-2025年第一學期一年級班主任經(jīng)驗分享(著眼于愛 著手于細)【課件】
- 提優(yōu)精練08-2023-2024學年九年級英語上學期完形填空與閱讀理解提優(yōu)精練(原卷版)
- DB4511T 0002-2023 瓶裝液化石油氣充裝、配送安全管理規(guī)范
- 企業(yè)內(nèi)部客供物料管理辦法
- 婦科臨床葡萄胎課件
- 三基三嚴練習題庫與答案
- 傳媒行業(yè)突發(fā)事件應急預案
- 債務抵租金協(xié)議書范文范本
- 藥學技能競賽標準答案與評分細則處方
- 2025屆高考英語 716個閱讀理解高頻詞清單
評論
0/150
提交評論