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部分

  • 相关阅读:
    2019暑假中山纪中集训游记
    pytest入门学习(1)
    学习makefile与autoconfig笔记,持续更新
    新手安装 hadoop、hive和hbase 笔记
    新装ubuntu 12.04 , 使用技巧
    JDK1.7 和 jetty配置教程
    python成长之路一
    IDM下载神器
    测试
    Hadoop命令
  • 原文地址:https://www.cnblogs.com/qiangini/p/14905735.html
Copyright © 2011-2022 走看看