1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@mipmap/ic_login_01"
- tools:context="com.zhong.inspection.ui.MenuActivity">
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:background="@mipmap/ic_login_02" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:gravity="center"
- android:orientation="vertical">
- <com.makeramen.roundedimageview.RoundedImageView
- android:id="@+id/imgLog"
- android:layout_width="100dp"
- android:layout_height="100dp"
- android:background="@drawable/ic_img_bgm"
- android:gravity="center"
- android:text="logo"
- android:scaleType="fitXY"
- android:textColor="@color/black"
- android:textSize="16sp" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="30dp"
- android:text="@string/login_tv"
- android:textColor="@color/white"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/face_login"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_marginLeft="18dp"
- android:layout_marginTop="22dp"
- android:layout_marginRight="18dp"
- android:background="@drawable/ic_bgm_meue_login"
- android:gravity="center"
- android:text="@string/login_face_tx"
- android:textColor="@color/white"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/pwd_login"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_marginLeft="18dp"
- android:layout_marginTop="26dp"
- android:layout_marginRight="18dp"
- android:background="@drawable/ic_bgm_meue_login"
- android:gravity="center"
- android:text="@string/login_pwd"
- android:textColor="@color/white"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/cred_login"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_marginLeft="18dp"
- android:layout_marginTop="26dp"
- android:layout_marginRight="18dp"
- android:background="@drawable/ic_bgm_meue_login"
- android:gravity="center"
- android:text="@string/login_cred_tv"
- android:textColor="@color/white"
- android:textSize="16sp" />
- </LinearLayout>
- </RelativeLayout>
|