zoukankan      html  css  js  c++  java
  • 10 月13 号

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@mipmap/ic_launcher"
        android:layout_marginTop="150dp"
        android:layout_centerHorizontal="true"/>
    
    <EditText
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:text="请输入用户名:"
        android:layout_marginTop="250dp"
        android:layout_centerHorizontal="true"/>
    
    <EditText
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:text="请输入用户名:"
        android:layout_marginTop="300dp"
        android:layout_centerHorizontal="true"/>
    <Button
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="350dp"
        android:text="登录"
        android:onClick="click"/>
    </RelativeLayout>
    
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#F5F4F4"
    android:orientation="vertical"
    tools:context=".MainActivity">
    
    <TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:background="#00BCD4"
    android:enabled="true"
    android:gravity="center"
    android:text="注册界面"
    android:textColor="#FF5722"
    android:textSize="30sp" />
    
    <TableLayout
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:gravity="center">
    
    <TableRow
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">
    
    <TextView
    android:id="@+id/name"
    android:layout_width="wrap_content"
    android:layout_height="30dp"
    android:enabled="true"
    android:text="用户名:"
    android:textSize="20sp"
    android:textStyle="bold" />
    
    <EditText
    android:id="@+id/etname"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:ems="10"
    android:inputType="textPersonName" />
    </TableRow>
    
    <TableRow
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">
    
    <TextView
    android:id="@+id/password"
    android:layout_width="wrap_content"
    android:layout_height="30dp"
    android:enabled="true"
    android:text="密码:"
    android:textSize="20sp"
    android:textStyle="bold" />
    
    <EditText
    android:id="@+id/etpass"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:ems="10"
    android:inputType="numberPassword" />
    
    </TableRow>
    </TableLayout>
  • 相关阅读:
    apache 页面压缩技术mod_deflate安装和配置
    获取指定目录下的所有文件名和路径(包括子目录)
    ThinkPHP框架项目开发专题自动验证
    hd cdnServer 51cdn / ChinaCache / ATS / Apache Traffic Server
    js calendar / wannianli
    OS + Unix Solaris / openSolaris
    project web architecture
    OS + Unix HPUX
    逻辑左移
    桂林游览2
  • 原文地址:https://www.cnblogs.com/xuwei123456/p/13869416.html
Copyright © 2011-2022 走看看