156 lines
5.7 KiB
XML
156 lines
5.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/bg_login"
|
|
android:padding="20dp">
|
|
|
|
<!-- 服务器配置入口 (右上角) -->
|
|
<ImageView
|
|
android:id="@+id/iv_settings"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginTop="10dp"
|
|
android:padding="8dp"
|
|
android:src="@android:drawable/ic_menu_manage"
|
|
android:contentDescription="配置服务器" />
|
|
|
|
<!-- 顶部标题 -->
|
|
<LinearLayout
|
|
android:id="@+id/ll_header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="20dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="80dp"
|
|
android:layout_height="80dp"
|
|
android:src="@drawable/ic_fire_logo" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="消防值守台"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="26sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/shape_login_box"
|
|
android:elevation="8dp"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:padding="30dp"
|
|
app:layout_constraintWidth_max="450dp"
|
|
app:layout_constraintWidth_default="percent"
|
|
app:layout_constraintWidth_percent="0.85"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="25dp"
|
|
android:text="用户登录"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="20sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
android:text="测试账号: admin 密码: 123456"
|
|
android:textColor="#CCFFFFFF"
|
|
android:textSize="14sp" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_username"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_marginBottom="15dp"
|
|
android:background="@drawable/shape_edit_text"
|
|
android:hint="请输入用户名"
|
|
android:paddingLeft="15dp"
|
|
android:paddingRight="15dp"
|
|
android:singleLine="true"
|
|
android:textColor="#333333"
|
|
android:textColorHint="#999999" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:background="@drawable/shape_edit_text"
|
|
android:hint="请输入密码"
|
|
android:inputType="textPassword"
|
|
android:paddingLeft="15dp"
|
|
android:paddingRight="15dp"
|
|
android:singleLine="true"
|
|
android:textColor="#333333"
|
|
android:textColorHint="#999999" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="25dp">
|
|
|
|
<CheckBox
|
|
android:id="@+id/cb_remember"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="记住登录"
|
|
android:textColor="#FFFFFF" />
|
|
</RelativeLayout>
|
|
|
|
<Button
|
|
android:id="@+id/btn_login"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="55dp"
|
|
android:layout_marginBottom="15dp"
|
|
android:background="@drawable/shape_button_login"
|
|
android:text="登录"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="18sp" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_ptt_example"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@drawable/shape_button_login"
|
|
android:text="PTT 示例"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="16sp" />
|
|
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<!-- 底部版权 -->
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="20dp"
|
|
android:text="Copyright © 2020-2026 Telewave. All Rights Reserved."
|
|
android:textColor="#88FFFFFF"
|
|
android:textSize="12sp" />
|
|
|
|
</RelativeLayout>
|