zoukankan      html  css  js  c++  java
  • 根据痛点分析制作软件

    RemindYourself 日程管理

    软件分析

    现在社会上的人不懂得合理分配自己的时间,很多时候都是这边答应帮忙办事,那边答应帮忙办事
    最后自己忘这忘那,所以我们就想开发一款软件让人们可以更加合理的管理自己的时间。

    相关功能图如下

    相关界面草图

    登录界面设计与代码详细

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <RelativeLayout
        android:id="@+id/login_view"
        android:layout_width="400dp"
        android:layout_height="800dp"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true">
    
        <Button
            android:id="@+id/register"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentStart="true"
            android:layout_below="@+id/login"
            android:layout_marginTop="23dp"
            android:background="#e52525"
            android:onClick="resetpwd"
            android:text="注册"
            android:textColor="#ffffff"
            android:textSize="20dp" />
    
        <Button
            android:id="@+id/login"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentStart="true"
            android:layout_centerVertical="true"
            android:background="#545bcb"
            android:onClick="finish_login"
            android:text="登录"
            android:textColor="#ffffff"
            android:textSize="20dp" />
    
        <EditText
            android:id="@+id/edit_pwd"
            android:layout_width="400dp"
            android:layout_height="60dp"
            android:drawableLeft="@android:drawable/ic_lock_idle_lock" //AS自带的图库小图标
            android:ems="10"
            android:hint="请输入您的密码"
            android:inputType="textPassword"
            android:layout_below="@+id/account"
            android:layout_alignParentStart="true" />
    
        <EditText
            android:id="@+id/account"
            android:layout_width="400dp"
            android:layout_height="60dp"
            android:layout_alignParentStart="true"
            android:layout_marginTop="41dp"
            android:drawableLeft="@android:drawable/ic_menu_myplaces"  //AS自带的图库小图标
            android:hint="请输入您的用户名"
            android:inputType="textPersonName" />
    
        <CheckBox
            android:id="@+id/Remember"
            android:layout_width="100dp"
            android:layout_height="20dp"
            android:checked="false"
            android:text="记住密码"
            android:textSize="15dp"
            android:layout_below="@+id/edit_pwd"
            android:layout_alignParentStart="true" />
    
        <TextView
            android:id="@+id/change_pwd"
            android:layout_width="60dp"
            android:layout_height="20dp"
            android:layout_marginEnd="85dp"
            android:layout_marginRight="46dp"
            android:text="修改密码"
            android:textSize="15dp"
            android:layout_alignTop="@+id/Remember"
            android:layout_alignParentEnd="true" />
    </RelativeLayout>
    </LinearLayout>
  • 相关阅读:
    洛谷P4550 收集邮票 期望dp
    Codeforces Round #748 (Div. 3) G. Changing Brackets
    [Codeforces Round #748 (Div. 3)](https://codeforces.com/contest/1593) F. Red-Black Number 记忆化搜索
    [Codeforces Round #748 (Div. 3)](https://codeforces.com/contest/1593) D2 Half of Same
    HDU 3746 Cyclic Nacklace kmp找循环节
    Codeforces Round #747 (Div.2) D. The Number of Imposters
    Nand2tetris 学习笔记
    怎样解题表
    [省选]知识点板块
    List of Problems to be Solved
  • 原文地址:https://www.cnblogs.com/Higanbana/p/6961498.html
Copyright © 2011-2022 走看看