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>
  • 相关阅读:
    关于C++中操作符重载的疑问 :四个运算符=, ->, [], ()不可以重载为全局函数(友员函数)...
    linux内核移植过程问题总结
    关于开发板用tftp下载失败分析
    阿里云ECS下安装的MySQL无法远程连接?
    uva729
    使用 Confluence 6 服务器移动应用
    Confluence 6 移动浏览查看任务
    Confluence 6 移动浏览查看通知
    Confluence 6 移动浏览查看页面,博客和评论
    Confluence 6 移动浏览搜索内容和人
  • 原文地址:https://www.cnblogs.com/Higanbana/p/6961498.html
Copyright © 2011-2022 走看看