用代码写一个android studio 前端登入页面
时间: 2023-10-05 10:13:00 浏览: 111
好的,以下是一个简单的Android Studio前端登入页面的代码:
```xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#FFFFFF">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Username"
android:textSize="20sp"
android:textColor="#000000"
android:layout_marginTop="50dp"
android:layout_marginLeft="20dp"/>
<EditText
android:id="@+id/editText_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edittext_border"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password"
android:textSize="20sp"
android:textColor="#000000"
android:layout_marginTop="20dp"
android:layout_marginLeft="20dp"/>
<EditText
android:id="@+id/editText_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edittext_border"
android:inputType="textPassword"/>
<Button
android:id="@+id/button_login"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:text="Login"
android:layout_gravity="center"
android:textColor="#FFFFFF"
android:background="@drawable/button_background"/>
</LinearLayout>
```
此页面包括一个用户名输入框,一个密码输入框和一个登入按钮。你可以自行添加更多的功能来实现完整的登入页面。
阅读全文