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" />
  • 相关阅读:
    Angularjs 中文版API v1.3.9 阅读
    jquery之ajax
    requirejs中 shim
    reqiurejs学习
    angularjs与require的集成摘抄
    安装go-admin
    多种GitHub加速方式
    git初始化仓库操作
    git cherry-pick
    gc问题定位
  • 原文地址:https://www.cnblogs.com/20193925zxt/p/14880871.html
Copyright © 2011-2022 走看看