| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:flatui="http://schemas.android.com/apk/res-auto"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@mipmap/login_background">
- <TextView
- android:id="@+id/login_set"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_margin="@dimen/space_10"
- android:drawableLeft="@mipmap/login_setting"
- android:drawablePadding="@dimen/space_10"
- android:gravity="center"
- android:text="@string/login_setting"
- android:textColor="@color/sea_dark"
- android:textSize="@dimen/text_size_15" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_above="@id/login_set"
- android:layout_marginBottom="50dp"
- android:orientation="vertical"
- android:paddingLeft="@dimen/space_25"
- android:paddingRight="@dimen/space_25">
- <EditText
- android:id="@+id/login_user_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="20dp"
- android:drawableLeft="@mipmap/login_user_name"
- android:drawablePadding="@dimen/space_10"
- android:gravity="center"
- android:hint="@string/login_user_name"
- android:includeFontPadding="true"
- android:maxLines="1"
- android:textColor="@color/blue" />
- <EditText
- android:id="@+id/login_user_password"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="20dp"
- android:drawableLeft="@mipmap/login_password"
- android:drawablePadding="@dimen/space_10"
- android:gravity="center"
- android:hint="@string/login_user_password"
- android:includeFontPadding="true"
- android:inputType="textPassword"
- android:maxLines="1"
- android:textColor="@color/blue" />
- <TextView
- android:id="@+id/login_btn"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_20"
- android:background="@mipmap/login_btn"
- android:gravity="center"
- android:text="@string/login_btn"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_25" />
- </LinearLayout>
- </RelativeLayout>
|