RelativeLayout布局制作登陆界面

来源:互联网 发布:淘宝雪梨的店 编辑:程序博客网 时间:2024/05/29 09:40

activity_main.xml

<!--RelativeLayout布局制作登陆界面--><?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:padding="15dp">    <TextView        android:id="@+id/lableView"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:gravity="center"        android:text="登录界面" />    <EditText        android:id="@+id/usernameText"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentLeft="true"        android:layout_alignParentRight="true"        android:hint="username"        android:inputType="textPassword"        android:layout_below="@id/lableView"/>    <EditText        android:id="@+id/passwordText"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignLeft="@id/usernameText"        android:layout_alignRight="@id/usernameText"        android:hint="password"        android:layout_below="@id/usernameText"/>    <Button        android:id="@+id/cancelButton"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_below="@id/passwordText"        android:layout_alignParentRight="true"        android:text="取消"/>    <Button        android:id="@+id/okButton"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignBottom="@id/cancelButton"        android:layout_toLeftOf="@id/cancelButton"        android:text="确定"/></RelativeLayout>
0 0
原创粉丝点击