143 lines
5.7 KiB
XML
143 lines
5.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout 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">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/black_bg">
|
|
|
|
<com.allen.library.shape.ShapeFrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="230dp"
|
|
app:shapeGradientAngle="top_bottom"
|
|
app:shapeGradientEndColor="#000000"
|
|
app:shapeGradientStartColor="#10504A" />
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="120dp"
|
|
android:layout_height="105dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginRight="15dp"
|
|
android:background="@mipmap/icon_login" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/icon"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="36dp"
|
|
android:text="您好!欢迎使用"
|
|
android:textColor="@color/white" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/icon"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="70dp"
|
|
android:text="透明地质数据采集终端系统"
|
|
android:textColor="@color/white"
|
|
android:textSize="24sp" />
|
|
|
|
<com.allen.library.shape.ShapeRelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/icon"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginTop="140dp">
|
|
|
|
<com.allen.library.shape.ShapeLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:layout_marginHorizontal="40dp"
|
|
android:layout_marginTop="50dp"
|
|
android:orientation="horizontal"
|
|
app:shapeCornersRadius="20dp"
|
|
app:shapeSolidColor="#17181C">
|
|
|
|
<ImageView
|
|
android:layout_width="22dp"
|
|
android:layout_height="22dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="15dp"
|
|
android:background="@mipmap/icon_user" />
|
|
|
|
<EditText
|
|
android:id="@+id/login_et_user_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="15dp"
|
|
android:background="@null"
|
|
android:hint="请输入用户名"
|
|
android:longClickable="false"
|
|
android:maxLength="20"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:textColor="@color/white"
|
|
android:textColorHint="@color/hint_text_color"
|
|
android:textSize="14sp"
|
|
android:theme="@style/Theme.AppCompat.DayNight" />
|
|
|
|
</com.allen.library.shape.ShapeLinearLayout>
|
|
|
|
<com.allen.library.shape.ShapeLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:layout_marginHorizontal="40dp"
|
|
android:layout_marginTop="120dp"
|
|
android:orientation="horizontal"
|
|
app:shapeCornersRadius="20dp"
|
|
app:shapeSolidColor="#17181C">
|
|
|
|
<ImageView
|
|
android:layout_width="22dp"
|
|
android:layout_height="22dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="15dp"
|
|
android:background="@mipmap/icon_password" />
|
|
|
|
<com.zmkg.coaloperation.view.CustomPasswordView
|
|
android:id="@+id/login_et_user_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="15dp" />
|
|
|
|
</com.allen.library.shape.ShapeLinearLayout>
|
|
|
|
<com.allen.library.shape.ShapeTextView
|
|
android:id="@+id/submit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:layout_marginHorizontal="40dp"
|
|
android:layout_marginTop="230dp"
|
|
android:gravity="center"
|
|
android:soundEffectsEnabled="true"
|
|
android:text="登录"
|
|
android:textColor="@color/white"
|
|
android:textSize="18sp"
|
|
app:shapeCornersRadius="10dp"
|
|
app:shapeSolidColor="@color/btn_color" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="70dp"
|
|
android:layout_marginBottom="40dp"
|
|
android:text="中煤科工西安研究院(集团)有限公司"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp" />
|
|
|
|
</com.allen.library.shape.ShapeRelativeLayout>
|
|
|
|
|
|
</RelativeLayout>
|
|
</layout> |