zoukankan      html  css  js  c++  java
  • 20210114 android学习

    今天学习QQ的布局

    首先完成主布局

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorAccent">

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="70dp"
    >
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="QQ"
    android:drawableLeft="@mipmap/ic_launcher"
    android:textSize="50dp"
    >
    </TextView>
    <EditText
    android:id="@+id/et_account"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:hint="QQ号码/手机号/邮箱"
    android:layout_marginTop="30dp"
    >
    </EditText>
    <EditText
    android:id="@+id/et_password"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:hint="密码"
    android:inputType="textPassword"
    >
    </EditText>
    <Button
    android:id="@+id/bt_login"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="登录"
    android:textSize="20sp">

    </Button>
    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp">
    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="#222222"
    android:text="忘记密码?"
    android:textSize="13sp"
    >
    </TextView>
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="13sp"
    android:textColor="#222222"
    android:text="新用户注册"
    android:layout_alignParentRight="true"
    >
    </TextView>
    </RelativeLayout>

    </LinearLayout>
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="50dp"
    android:text="登录即代表阅读并同意阅读条款"
    android:textColor="#222222"
    android:textSize="20sp">
    </TextView>
    </RelativeLayout>



  • 相关阅读:
    POJ ACM题分类
    HDU 4438 Hunters (概率 & 期望)
    HDU 1042 N!
    HDU 1073 Online Judge
    PKU 1006 Biorhythms (中国剩余定理 * *)
    HDU 1047 Integer Inquiry
    HDU 2710 Max Factorv (素数模板 & 多种解法)
    HDU A + B Problem II 1002
    第6期(江西省吉安市永丰县)县长手机信箱工作简报(自吹自擂政绩,自圆其说)
    Send mail from ASP.NET using your gmail account
  • 原文地址:https://www.cnblogs.com/huangmouren233/p/14912631.html
Copyright © 2011-2022 走看看