登录 注册的布局

来源:互联网 发布:网络传输介质各自特点 编辑:程序博客网 时间:2024/05/16 05:30
登录
<?xml version="1.0" encoding="utf-8"?><LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    android:orientation="vertical"    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"    android:layout_height="match_parent" tools:context="daima.mvplogin.MainActivity">    <EditText        android:id="@+id/sjh"        android:layout_width="match_parent"        android:layout_height="wrap_content"    />    <EditText        android:id="@+id/pwd"        android:layout_width="match_parent"        android:layout_height="wrap_content"        />    <LinearLayout        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:orientation="horizontal">        <Button            android:id="@+id/dl"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="登录" />        <Button            android:id="@+id/zc"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="注册" />    </LinearLayout></LinearLayout>
注册
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical" android:layout_width="match_parent"    android:layout_height="match_parent">    <EditText        android:id="@+id/sjh"        android:layout_width="match_parent"        android:layout_height="wrap_content"        />    <EditText        android:id="@+id/pwd"        android:layout_width="match_parent"        android:layout_height="wrap_content"        />    <LinearLayout        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:orientation="horizontal">        <Button            android:id="@+id/zc"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="注册" />    </LinearLayout></LinearLayout>