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" />
  • 相关阅读:
    站立会议第八天
    Servlet基础知识
    JSP基础知识
    JSP基础知识
    JDBC工具包
    JDBC
    MySQL
    ASP.NET程序代码优化的七个方面
    中小型软件项目开发一般流程建议
    理解九种图
  • 原文地址:https://www.cnblogs.com/20193925zxt/p/14880871.html
Copyright © 2011-2022 走看看