zoukankan      html  css  js  c++  java
  • 5月6号个人冲刺

      今天是星期四,今天还是进行编程,老师将上课时间交给了我们。今天三个人进行了一次了交流,主要是进行了一次代码的交换,我将代码的个人主页部分交给了他们,他们将代码的注册登录部分交给了我。

      下阶段就是动态部分的设计与编程。

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        >
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/register_surface"
            android:textSize="40dp"
            android:background="#00FF00"
            android:layout_gravity="center"
            />
    
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/identity_text"
                android:textSize="30dp"
                android:layout_marginTop="50dp"
                android:layout_marginLeft="30dp"/>
    
            <EditText
                android:id="@+id/username_register"
                android:layout_width="250dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="50dp"
                android:singleLine="true"
                android:layout_marginLeft="5dp"
                android:textSize="30dp"
                android:maxLines="1"
                android:hint="******"/>
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/password_text"
                android:textSize="30dp"
                android:layout_marginLeft="30dp"/>
    
            <EditText
                android:id="@+id/password_register"
                android:layout_width="250dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:textSize="30dp"
                android:singleLine="true"
                android:maxLines="1"
                android:hint="******"/>
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/mailbox_text"
                android:textSize="30dp"
                android:layout_marginLeft="30dp"/>
    
            <EditText
                android:id="@+id/email_register"
                android:layout_width="250dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:textSize="30dp"
                android:singleLine="true"
                android:maxLines="1"
                android:hint="******"/>
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/phonenumber_text"
                android:textSize="30dp"
                android:layout_marginLeft="30dp"/>
    
            <EditText
                android:id="@+id/phonenumber_register"
                android:layout_width="250dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:textSize="30dp"
                android:singleLine="true"
                android:maxLines="1"
                android:hint="******"/>
        </LinearLayout>
    
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <Button
                android:id="@+id/btn_register_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="40dp"
                android:background="#00FF00"
                android:layout_marginLeft="150dp"
                android:layout_marginTop="20dp"
                android:text="@string/surface2_register_button"
                />
    
        </LinearLayout>
    </LinearLayout>
  • 相关阅读:
    关于php中,记录日志中,将数组转为json信息记录日志时遇到的问题总结
    快速搭建vsftp 服务器并配置指定目录
    Chrome 里的请求报错 "CAUTION: Provisional headers are shown" 是什么意思?
    使用sed,grep 批量修改文件内容
    Linux如何让进程在后台运行的三种方法详解
    redis 安装方式
    beanstalk 安装
    mysql 错误信息
    PostgreSQL LIMIT 子句
    pg_dump和pg-server版本不一致问题的解决办法
  • 原文地址:https://www.cnblogs.com/12248H/p/14762235.html
Copyright © 2011-2022 走看看