android 中使用TableLayout实现表单布局效果示例

 更新时间:2018年06月12日 16:51:46   作者:追梦小乐  
本篇文章主要介绍了android 中使用TableLayout实现表单布局效果示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

使用TableLayout表格布局实现表单效果


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="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="现参保单位" />

      <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="参保状态" />

      <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="现缴费基数" />

      <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="个人账号总月数" />

      <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="截止上月欠缴月数" />

      <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>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android retrofit上传文件实例(包含头像)

    Android retrofit上传文件实例(包含头像)

    下面小编就为大家分享一篇Android retrofit上传文件实例(包含头像),具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • android关于按钮点击效果实现的方法

    android关于按钮点击效果实现的方法

    今天小编就为大家分享一篇关于android关于按钮点击效果实现的方法,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2019-03-03
  • Android Handler中的休眠唤醒实现详解

    Android Handler中的休眠唤醒实现详解

    这篇文章主要为大家介绍了Android Handler中的休眠唤醒实现示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-01-01
  • Android SQLite详解及示例代码

    Android SQLite详解及示例代码

    本文主要讲解Android SQLite,这里对数据库SQLite 做了详细的知识资料整理,并附示例代码和实现效果图,有需要的小伙伴可以参考下
    2016-08-08
  • Android SwipereFreshLayout下拉刷新

    Android SwipereFreshLayout下拉刷新

    这篇文章主要介绍了Android SwipereFreshLayout下拉刷新的相关资料,需要的朋友可以参考下
    2017-06-06
  • Android 获取手机信息实例详解

    Android 获取手机信息实例详解

    这篇文章主要介绍了Android 获取手机信息实例详解的相关资料,这里附有实例代码及实现效果图,需要的朋友可以参考下
    2017-01-01
  • Android手势操作示例(上/下/左/右的判断)

    Android手势操作示例(上/下/左/右的判断)

    这篇文章主要介绍了Android手势操作方法,包含了针对上、下、左、右等方向的判断,具有一定参考借鉴价值,需要的朋友可以参考下
    2016-06-06
  • Android Studio error: Unable to start the daemon process的解决方法

    Android Studio error: Unable to start the daemon process的解决方

    这篇文章主要介绍了在 Android Studio 上新建项目,出现 Unable to start the daemon process问题的几种的解决方法,需要的朋友可以参考下
    2020-10-10
  • Android仿QQ左滑删除置顶ListView操作

    Android仿QQ左滑删除置顶ListView操作

    这篇文章主要为大家详细介绍了Android仿QQ左滑删除置顶ListView操作,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-12-12
  • android中实现editext搜索完成自动关闭软键盘

    android中实现editext搜索完成自动关闭软键盘

    在Android应用开发中,经常会遇到需要在EditText中输入内容,并通过搜索按钮进行搜索的场景,通常情况下,当用户点击搜索按钮后,我们希望关闭软键盘以提供更好的用户体验,本文将介绍如何在Android中实现EditText搜索完成后自动关闭软键盘的功能
    2023-10-10

最新评论