使用androidstudio写一个xml页面,要求有以下字段:VID 编号 VISIT_DATE 来访时间 startWen 状态 yuanyou 类别-处理方式 VISIT_USER 来访者姓名 IDCARD 证件号码 VISIT_TEL 来访联系电话并且要使用LinearLayout布局
时间: 2024-03-29 10:34:43 浏览: 55
ASIC-MP4V_VID_MPEG4_ASP.pdf
好的,以下是一个符合要求的xml页面代码:
```xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="VID 编号"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="VISIT_DATE 来访时间"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="startWen 状态"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="yuanyou 类别-处理方式"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="VISIT_USER 来访者姓名"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="IDCARD 证件号码"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="VISIT_TEL 来访联系电话"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
```
这里使用了LinearLayout布局,并使用了多个TextView和EditText控件来展示和输入对应的字段。你可以根据实际需求进行更改和调整。
阅读全文