zoukankan      html  css  js  c++  java
  • 2021/3/8

    1.今日收获内容
    写登录的页面

    <?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">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="46dp"
            android:text="手机号:"
            android:textSize="30dp" />
    
        <EditText
            android:id="@+id/edit_21"
            android:layout_width="match_parent"
            android:layout_height="55dp"
            android:hint="请填写手机号"/>
    
    
        <Button
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:text="登录" />
    
        <Button
            android:id="@+id/button2"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:text="注册" />
    
        <Button
            android:id="@+id/button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="查看今日登记情况" />
    
    </LinearLayout>


    2.遇到的问题
    手机号登录,但是没有短信验证,不好看

    3.明天目标

    java部分

  • 相关阅读:
    AAA
    Express4 启航指南
    nodejs 中的 NODE_PATH
    Windows 系统下设置Nodejs NPM全局路径
    C# VS Java
    在windows环境中使用varnish
    各种数据类型对比
    RubyGems 镜像
    npm国内镜像介绍
    WCF 身份验证 通过检查客户端IP
  • 原文地址:https://www.cnblogs.com/qiangini/p/14905735.html
Copyright © 2011-2022 走看看