2023.9.29每日总结

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".login"
    android:orientation="vertical"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="用户名"/>
    <EditText
        android:id="@+id/username"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="密码"/>
    <EditText
        android:id="@+id/userpwd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:password="true"
        />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Button
            android:id="@+id/login"
            android:text="登录"
            android:layout_width="200dp"
            android:layout_height="50dp"/>
        <Button
            android:id="@+id/zhuce"
            android:text="注册"
            android:layout_width="200dp"
            android:layout_height="50dp"
            android:onClick="zhuce"
            />
    </LinearLayout>

</LinearLayout>

完整登录界面

posted @ 2023-09-29 21:31  超爱彬宝同学  阅读(15)  评论(0)    收藏  举报