zoukankan      html  css  js  c++  java
  • 2月2日学习日志

    今天学习了简单的登录界面。

    <TextView
    android:id="@+id/textViewLoginId"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="50dp"
    android:layout_marginLeft="10dp"
    android:text="用户id" />

    <EditText
    android:id="@+id/editTextLoginId"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:background="@drawable/corners"
    android:ems="10"
    android:inputType="textPersonName"
    android:text="" />

    <TextView
    android:id="@+id/textViewLoginPassword"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="20dp"
    android:text="密码" />

    <EditText
    android:id="@+id/editTextLoginPassword"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:background="@drawable/corners"
    android:ems="10"
    android:inputType="textPassword" />
  • 相关阅读:
    vue与react的区别
    for(key in obj)
    github上传项目
    第一个blog
    黑客几乎绝不用鼠标?
    中国白帽黑客调查
    编程新手六部曲
    程序猿看了要xiao了
    程序是如何执行的?
    IT 技术人需要思考的 15 个问题
  • 原文地址:https://www.cnblogs.com/20193925zxt/p/14880871.html
Copyright © 2011-2022 走看看