5.4(小组作业十日冲刺第十天)

根据之前一步一步测试的结果,实现了软件的基本功能,基本将日记的增删改查内容实现,在此基础上检查软件的运行以进行修改以应对明天的检验

所花时间:2h

代码行量:156行

<?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:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".MainActivity"
android:orientation="vertical"
android:background="@drawable/bg"
android:gravity="center_vertical|center_horizontal"
android:paddingLeft="30dp"
android:paddingRight="30dp"
>


<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="心迹助成"
android:textSize="35sp"
android:textColor="#CD0756"
android:layout_marginBottom="130dp"
android:gravity="center_vertical|center_horizontal"
android:textStyle="bold"
/>

<EditText
android:id="@+id/login_account"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入账号"
android:textColorHint="#B3FFFFFF"
android:backgroundTint="#FF0000"
android:layout_marginBottom="20dp"
android:textColor="#FF0000"
android:inputType="text"

/>
<EditText
android:id="@+id/login_pwd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入密码"
android:textColorHint="#B3FFFFFF"
android:backgroundTint="#FF0000"
android:textColor="#FF0000"
android:inputType="textPassword"
android:layout_marginBottom="20dp"
/>

<CheckBox
android:id="@+id/remember_pwd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="记住密码"
android:textColor="#000000"
android:layout_marginBottom="20dp"
/>

<Button
android:id="@+id/login_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="安全登录"
android:layout_marginBottom="16dp"
android:textStyle="bold"
android:background="@drawable/button_style"
android:foreground="?selectableItemBackground"
/>


<Button
android:id="@+id/register_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="账号注册"
android:textStyle="bold"
android:background="@drawable/button_style"
android:foreground="?selectableItemBackground"
/>




</LinearLayout>
<?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:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".activity.RegisterActivity"
android:orientation="vertical"
android:background="@drawable/bg"
android:gravity="center_vertical|center_horizontal"
android:paddingLeft="30dp"
android:paddingRight="30dp"
>


<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="备忘录"
android:textSize="35sp"
android:textColor="#CD0756"
android:layout_marginBottom="130dp"
android:gravity="center_vertical|center_horizontal"
android:textStyle="bold"
/>

<EditText
android:id="@+id/register_account"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入账号"
android:textColorHint="#B3FFFFFF"
android:backgroundTint="#FF0000"
android:layout_marginBottom="20dp"
android:textColor="#FF0000"
android:inputType="textCapWords"

/>
<EditText
android:id="@+id/register_pwd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入密码"
android:textColorHint="#B3FFFFFF"
android:backgroundTint="#FF0000"
android:textColor="#FF0000"
android:inputType="textPassword"
android:layout_marginBottom="20dp"
/>


<EditText
android:id="@+id/register_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入姓名"
android:textColorHint="#B3FFFFFF"
android:backgroundTint="#FF0000"
android:textColor="#FF0000"
android:inputType="text"
android:layout_marginBottom="20dp"
/>


<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/radio_style"
android:foreground="?selectableItemBackground"
android:layout_marginBottom="20dp"


>

<RadioButton
android:id="@+id/register_man"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="男"
android:textColor="#FF0000"
android:layout_weight="1"
android:textStyle="bold"

/>
<RadioButton
android:id="@+id/register_woman"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="女"
android:textColor="#FF0000"
android:layout_weight="1"
android:textStyle="bold"



/>


</RadioGroup>


<EditText
android:id="@+id/register_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入联系方式"
android:textColorHint="#B3FFFFFF"
android:backgroundTint="#FF0000"
android:textColor="#FF0000"
android:inputType="number"
android:layout_marginBottom="20dp"
/>

<EditText
android:id="@+id/register_age"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入年纪"
android:textColorHint="#B3FFFFFF"
android:backgroundTint="#FF0000"
android:textColor="#FF0000"
android:inputType="text"
android:layout_marginBottom="20dp"
/>


<Button
android:id="@+id/register_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="账号注册"
android:layout_marginBottom="16dp"
android:textStyle="bold"
android:background="@drawable/button_style"
android:foreground="?selectableItemBackground"
/>


<Button
android:id="@+id/register_to_login_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="返回登录"
android:textStyle="bold"
android:background="@drawable/button_style"
android:foreground="?selectableItemBackground"
/>




</LinearLayout>
posted @ 2024-05-05 01:25  不如喝点  阅读(5)  评论(0编辑  收藏  举报