作者在 2018-07-25 22:58:25 发布以下内容
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/activitymain"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="50dp" android:orientation="vertical" android:padding="30dp">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:drawableLeft="@drawable/main" android:text="QQ" android:textSize="40sp"/>
<EditText android:layout_width="match_parent" android:layout_height="match_parent" android:hint="QQ号码/手机号码/邮箱"/>
<EditText android:layout_width="match_parent" android:layout_height="match_parent" android:hint="密码"/>
<Button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="登录" android:textSize="20dp"/>
<RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="18dp">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="忘记密码?" android:textColor="#ffffff" android:textSize="16sp"/>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="新用户注册" android:layout_alignParentRight="true" android:textColor="#ffffff" android:textSize="16sp"/>
</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:textColor="#00aaff" android:text="登录即代表阅读并同意条款" android:textSize="20sp" />
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="#ffffff"/> <stroke android:width="1dp" android:color="#333333"/> </shape>