国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

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

2019-12-12 00:48:04
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

使用TableLayout表格布局實(shí)現(xiàn)表單效果


1、核心知識(shí)點(diǎn)


android:divider="@drawable/table_v_divider"android:showDividers="middle|beginning|end"

2、樣式代碼

style樣式

<?xml version="1.0" encoding="utf-8"?><resources>  <!--灰色8a8a8a18號(hào)字體,130寬,主要用于確認(rèn)個(gè)人信息表格樣式-->  <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號(hào)字體-->  <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="險(xiǎn)種類型:" />    <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="請(qǐng)選擇" />    <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="身份證號(hào)" />      <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="個(gè)人社保編號(hào)" />      <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="參保繳費(fèi)" />      <TextView        style="@style/style_table_gray6_18_130_text"        android:layout_width="0dp"        android:layout_weight="2"        android:text="現(xiàn)繳費(fèi)基數(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="參保起始時(shí)間" />      <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="繳費(fèi)截止時(shí)間" />      <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="個(gè)人賬號(hào)總月數(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="個(gè)人賬號(hào)存在額" />      <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="截止上月欠費(fèi)金額" />      <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="中斷開始時(shí)間" />      <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="中斷截止時(shí)間" />      <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>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 乐至县| 尉犁县| 舟曲县| 三都| 德惠市| 监利县| 隆回县| 吴江市| 新晃| 云和县| 临海市| 海安县| 牙克石市| 静宁县| 鹤山市| 临湘市| 潞西市| 临汾市| 稻城县| 赞皇县| 孟州市| 麻江县| 佛山市| 竹山县| 远安县| 上思县| 安溪县| 探索| 秀山| 鄯善县| 和林格尔县| 新田县| 尚义县| 阳春市| 通许县| 华宁县| 葵青区| 化德县| 上杭县| 德州市| 永德县|