放松也放松完了
快考试了进入状态了该
学习内容:安卓
<?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="#66BB" tools:context=".LoginActivity"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:minWidth="300dp" android:layout_centerVertical="true" android:orientation="vertical" android:gravity="bottom"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> <TextView android:id="@+id/textview_login" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="登录" android:textSize="25sp" android:textStyle="bold" android:background="@drawable/shape_rectangle_textview"/> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> </LinearLayout> </LinearLayout> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"> </TextView> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="15dp" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="match_parent" android:text="账号:" android:textColor="#000000" android:textStyle="bold" android:textSize="15sp" android:gravity="center" android:background="@drawable/shape_oval_textview"/> <EditText android:id="@+id/editText_username" android:layout_width="match_parent" android:layout_height="match_parent" android:inputType="text" android:maxLength="9" android:hint="请输入用户名" android:textColorHint="#999999" android:background="@drawable/shape_round_rectangle"/> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="15dp" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="match_parent" android:text="密码:" android:textColor="#000000" android:textStyle="bold" android:textSize="15sp" android:gravity="center" android:background="@drawable/shape_oval_textview"/> <EditText android:id="@+id/editText_password" android:layout_width="match_parent" android:layout_height="match_parent" android:inputType="numberPassword" android:maxLength="9" android:hint="请输入密码" android:textColorHint="#999999" android:background="@drawable/shape_round_rectangle"/> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> <CheckBox android:id="@+id/checkbox_remember_id" android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="false" android:text="记住账号" android:textColor="#FFC0CB" android:textStyle="bold" android:background="@drawable/shape_rectangle_textview"/> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> <CheckBox android:id="@+id/checkbox_remember_password" android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="false" android:text="记住密码" android:textColor="#FFC0CB" android:textStyle="bold" android:background="@drawable/shape_rectangle_textview"/> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:id="@+id/button_register_no" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="注册"/> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> <Button android:id="@+id/button_login" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="登录" /> </LinearLayout> </LinearLayout> </LinearLayout> </RelativeLayout> 标签:放松,安卓,6.10,博客,进入状态,考试 From: https://www.cnblogs.com/zjm921/p/18251204