<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".tix">
<!--密码也要判断-->
<EditText
android:id="@+id/et_sj"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入提醒时间"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:textSize="20sp"
/>
<EditText
android:id="@+id/et_neir"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入提醒内容"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:textSize="20sp"
/>
<Button
android:id="@+id/btn_sett"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="设置"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
/>
</LinearLayout>
闹钟提醒打卡系统