团队第二阶段冲刺03

一、前言

1、昨天完成了:

改进文献检索算法:我们将优化检索算法,提高检索的准确性和速度,并支持多种检索方式,如关键词检索、主题检索、作者检索等。

2、今天完成了:

加强系统安全性:我们将引入身份认证和权限管理机制,确保系统的安全性和稳定性。

3、遇到的困难:

系统的安全性还不够完善,还需要继续改进

二、冲刺进度

  • 1.任务量:10天

    目前已经花费的时间:3天

    还剩余的时间:7天

三、逻辑代码

<?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="match_parent"

    android:orientation="vertical"
    tools:context=".zhuce">
    <androidx.appcompat.widget.Toolbar
        android:id="@+id/zctoolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:navigationIcon="@mipmap/back1"
        app:titleMarginStart="110dp"
        app:title="信息注册"
        >

    </androidx.appcompat.widget.Toolbar>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="100dp"
        >
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"></LinearLayout>
        <ImageView
            android:id="@+id/ZC1"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_gravity="center"
            android:src="@drawable/zctx"
            android:layout_margin="20dp"
             />
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_gravity="center_horizontal"
            android:layout_weight="1">
        </LinearLayout>

    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="点击更换头像"
            android:textColor="@color/black"
            ></TextView>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="10dp">
    </LinearLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    >
    <EditText
        android:id="@+id/ZCNi"
        android:layout_margin="5dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/dlzcdeyj"
        android:gravity="center"
        android:textColorHint="@color/black"
        android:hint="输入你的昵称"
        android:padding="15dp"
        android:textSize="16sp"
        android:textColor="@color/black"
        />
    <EditText
        android:layout_margin="5dp"
        android:id="@+id/ZCID"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/dlzcdeyj"
        android:gravity="center"
        android:textColorHint="@color/black"
        android:hint="注册账号/6位数"
        android:textColor="@color/black"
        android:inputType="number"
        android:padding="15dp"
        android:maxLength="6"
        android:textSize="16sp"
        />
    <EditText
        android:layout_margin="5dp"
        android:id="@+id/ZCP1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/dlzcdeyj"
        android:gravity="center"
        android:textColorHint="@color/black"
        android:hint="输入密码"
        android:maxLength="16"
        android:textColor="@color/black"
        android:inputType="textPassword"
        android:padding="15dp"
        android:textSize="16sp"
        />
    <EditText
        android:layout_margin="5dp"
        android:id="@+id/ZCp2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/dlzcdeyj"
        android:gravity="center"
        android:textColorHint="@color/black"
        android:hint="确认密码"
        android:maxLength="16"
        android:textColor="@color/black"
        android:inputType="textPassword"
        android:padding="15dp"
        android:textSize="16sp"
         />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <LinearLayout
            android:layout_weight="2"
            android:gravity="center"
            android:layout_gravity="center"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <LinearLayout
                android:layout_weight="1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </LinearLayout>
            <TextView
                android:text="性别:"
                android:layout_weight="1"
                android:textSize="15dip"
                android:textColor="@color/black"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </TextView>
            <LinearLayout
                android:layout_weight="1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
            </LinearLayout>
        </LinearLayout>
        <LinearLayout
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <RadioGroup
                android:id="@+id/zhucesexcheck"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:gravity="center"
                android:orientation="horizontal">
                <RadioButton
                    android:layout_weight="1"
                    android:id="@+id/zcsexman"
                    android:text="男生"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">
                </RadioButton>
                <RadioButton
                    android:layout_weight="1"
                    android:id="@+id/zcsexwoman"
                    android:text="女生"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">

                </RadioButton>
            </RadioGroup>
        </LinearLayout>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <LinearLayout
            android:layout_weight="2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:orientation="horizontal">

            <TextView
                android:layout_weight="1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:text="个性签名:"
                android:textColor="@color/black">
            </TextView>

        </LinearLayout>
        <LinearLayout
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    <EditText
        android:id="@+id/ZCQM"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:background="@color/white"
        android:textColorHint="@color/black"
        android:textColor="@color/black"
        android:hint="输入个性介绍"
        android:padding="15dp"
        android:textSize="16sp"
        />
        </LinearLayout>
    </LinearLayout>
    <Button
        android:layout_margin="5dp"
        android:id="@+id/mainzcbt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/zcdebtn"
        android:onClick="zhuce"
        android:text="注册" />
</LinearLayout>


</LinearLayout>

 

posted @ 2023-05-26 20:02  玛卡巴卡突击队  阅读(4)  评论(0编辑  收藏  举报