Android布局之表格布局

xiaoxiao2021-02-28  20

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" > <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content"> <TextView android:layout_width="0px" android:layout_height="wrap_content" android:layout_weight="2" android:text="姓名"/> <EditText android:layout_width="0px" android:layout_weight="5" android:layout_height="wrap_content" android:hint="请填写姓名"/> </TableRow> <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content"> <TextView android:layout_width="0px" android:layout_height="wrap_content" android:layout_weight="2" android:text="身份证号"/> <EditText android:layout_width="0px" android:layout_weight="5" android:layout_height="wrap_content" android:hint="请填写身份证号"/> </TableRow> </TableLayout>
转载请注明原文地址: https://www.6miu.com/read-2630273.html

最新回复(0)