<?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">
|
|
<!-- 标题栏 -->
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="?attr/actionBarSize"
|
android:background="#FFFFFF"
|
android:elevation="4dp">
|
|
<!-- 返回按钮 -->
|
<ImageButton
|
android:id="@+id/btn_back"
|
android:layout_width="48dp"
|
android:layout_height="48dp"
|
android:layout_centerVertical="true"
|
android:background="?attr/selectableItemBackgroundBorderless"
|
android:src="@android:drawable/ic_menu_close_clear_cancel"
|
android:contentDescription="返回" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:text="标题"
|
android:textSize="18sp"
|
android:textColor="#000000" />
|
</RelativeLayout>
|
|
<!-- 快速提醒输入框 -->
|
<EditText
|
android:id="@+id/edit_quick_reminder"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="16dp"
|
android:background="@android:drawable/edit_text"
|
android:hint="快速提醒"
|
android:padding="12dp" />
|
|
<!-- 添加提醒按钮 -->
|
<Button
|
android:id="@+id/btn_add_reminder"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginHorizontal="16dp"
|
android:layout_marginTop="16dp"
|
android:backgroundTint="#03A9F4"
|
android:text="添加到提醒"
|
android:textColor="#FFFFFF" />
|
|
</LinearLayout>
|