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>
    

      

  • 相关阅读:
    Path Sum
    Restore IP Addresses
    Subsets II
    N-Queens
    Subsets
    Combination Sum II
    Combination Sum
    Sudoku Solver
    Valid Sudoku
    【贪心】【Uva11292】 勇者斗恶龙
  • 原文地址:https://www.cnblogs.com/reddead/p/14062908.html
Copyright © 2011-2022 走看看