AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
2.1.2登录界面设计 阶段代码:https://gitee.com/wupicheng/BestBall.git Initial commit ![](https://img.kancloud.cn/ce/6f/ce6f9ad5c77d46d6be05ad9f0f46f270_404x726.png) 登录界面的布局文件 activity_login 的代码 ``` <?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:orientation="vertical" android:layout_height="match_parent" tools:context=".LoginActivity"> <ImageView android:layout_marginTop="100dp" android:layout_marginLeft="130dp" android:src="@drawable/logo2" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <EditText android:drawableLeft="@drawable/icon_account" android:hint="账号" android:textSize="18sp" android:layout_marginTop="60dp" android:layout_marginLeft="80dp" android:layout_marginRight="80dp" android:layout_width="match_parent" android:layout_height="wrap_content" /> <EditText android:drawableLeft="@drawable/icon_password" android:hint="密码" android:textSize="18sp" android:layout_marginTop="5dp" android:layout_marginLeft="80dp" android:layout_marginRight="80dp" android:layout_width="match_parent" android:layout_height="wrap_content" /> <LinearLayout android:layout_marginTop="5dp" android:layout_marginLeft="80dp" android:layout_marginRight="80dp" android:layout_width="match_parent" android:orientation="horizontal" android:layout_height="wrap_content"> <TextView android:textColor="#BF00BF" android:textAlignment="center" android:text="@string/text_register" android:layout_weight="1" android:layout_width="0dp" android:layout_height="wrap_content" /> <TextView android:textColor="#BF00BF" android:textAlignment="center" android:text="@string/text_forgot" android:layout_weight="1" android:layout_width="0dp" android:layout_height="wrap_content" /> </LinearLayout> </LinearLayout> ```