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>
  • 相关阅读:
    图解建立三层架构
    c#和javascript交互
    UML类图
    机器学习算法之一(C4.5)
    html5新语义元素
    Hybrid App:企业移动开发
    解决Eclipse中运行WordCount出现 java.lang.ClassNotFoundException: org.apache.hadoop.examples.WordCount$TokenizerMapper问题【转】
    Hadoop 0.20.2 安装配置说明【转】
    2 宽度优先爬虫和带偏好的爬虫(1)
    Geolocation地理定位
  • 原文地址:https://www.cnblogs.com/12248H/p/14762235.html
Copyright © 2011-2022 走看看