服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android 中使用TableLayout实现表单布局效果示例

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

2022-03-02 15:19追梦小乐 Android

本篇文章主要介绍了android 中使用TableLayout实现表单布局效果示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

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

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

1、核心知识点

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

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

2、样式代码

style样式

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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文件

?
1
2
3
4
5
6
7
8
9
10
<?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文件

?
1
2
3
4
5
6
7
8
9
10
<?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>

颜色

?
1
<color name="c_gray_6">#8a8a8a</color>

3、完整代码如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?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>

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

原文链接:https://www.jianshu.com/p/2204311adb28

延伸 · 阅读

精彩推荐