在activity_record.xml布局文件中,放置两个TextView控件,分别用于显示界面标题和记录时间,一个EditText控件用于显示输入框,三个ImageView控件分别用于显示后退键图标、删除图标以及保存按钮图标。请写出代码activity_record.xml
时间: 2024-03-24 08:38:00 浏览: 85
好的,下面是activity_record.xml的代码:
```
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 页面标题 -->
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="记录详情"
android:textColor="#000000"
android:textSize="24sp"
android:layout_marginTop="16dp"
android:layout_marginLeft="16dp"/>
<!-- 记录时间 -->
<TextView
android:id="@+id/tv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2021-01-01 12:00"
android:textColor="#808080"
android:textSize="16sp"
android:layout_below="@+id/tv_title"
android:layout_marginLeft="16dp"/>
<!-- 记录内容 -->
<EditText
android:id="@+id/et_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_time"
android:layout_marginTop="16dp"
android:padding="16dp"
android:hint="请输入记录内容"/>
<!-- 后退键 -->
<ImageView
android:id="@+id/iv_back"
android:layout_width="32dp"
android:layout_height="32dp"
android:src="@drawable/ic_back"
android:layout_alignParentStart="true"
android:layout_marginTop="16dp"
android:layout_marginLeft="16dp"/>
<!-- 删除按钮 -->
<ImageView
android:id="@+id/iv_delete"
android:layout_width="32dp"
android:layout_height="32dp"
android:src="@drawable/ic_delete"
android:layout_alignParentEnd="true"
android:layout_marginTop="16dp"
android:layout_marginRight="16dp"/>
<!-- 保存按钮 -->
<ImageView
android:id="@+id/iv_save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_save"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="16dp"/>
</RelativeLayout>
```
以上代码中,使用了RelativeLayout布局,实现了页面标题、记录时间、记录内容以及三个按钮的布局。其中,TextView控件用于显示文本信息,EditText控件用于用户输入文本信息,ImageView控件用于显示图标,并且实现了一些交互功能。
阅读全文