123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?xml version="1.0" encoding="utf-8"?>
- <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="@color/white">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingLeft="@dimen/default_content_margin"
- android:paddingTop="@dimen/default_content_margin"
- android:paddingRight="@dimen/default_content_margin">
- <ImageView
- android:id="@+id/iv_cancel"
- android:layout_width="@dimen/company_20dp"
- android:layout_height="@dimen/company_20dp"
- android:src="@drawable/login_cancel_icon" />
- <TextView
- android:id="@+id/tv_login"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:text="登录"
- android:textColor="@color/main_color"
- android:textSize="@dimen/company_18sp" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/company_30dp"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <ImageView
- android:layout_width="62dp"
- android:layout_height="62dp"
- android:src="@drawable/logo" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/company_6dp"
- android:text="仕 途 网"
- android:textColor="@color/main_color"
- android:textSize="@dimen/company_18sp"
- android:textStyle="bold" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:paddingLeft="@dimen/company_15dp"
- android:paddingTop="@dimen/company_15dp"
- android:paddingRight="@dimen/company_15dp">
- <EditText
- android:id="@+id/edit_phone_number"
- android:layout_width="match_parent"
- android:layout_height="@dimen/company_50dp"
- android:layout_marginTop="@dimen/company_10dp"
- android:background="@drawable/shapre_default_edit_bg"
- android:hint="请输入用户名称/手机号/邮箱"
- android:maxLines="1"
- android:textCursorDrawable="@null"
- android:textSize="@dimen/company_14sp" />
- <EditText
- android:id="@+id/edit_password"
- android:layout_width="match_parent"
- android:layout_height="@dimen/company_50dp"
- android:layout_marginTop="@dimen/company_20dp"
- android:background="@drawable/shapre_default_edit_bg"
- android:hint="请输入登陆密码"
- android:inputType="textPassword"
- android:maxLines="1"
- android:textCursorDrawable="@null"
- android:textSize="@dimen/company_14sp" />
- </LinearLayout>
- <Button
- android:id="@+id/btn_next"
- android:layout_width="match_parent"
- android:layout_height="@dimen/company_50dp"
- android:layout_marginTop="@dimen/company_20dp"
- android:background="@drawable/shape_default_btn_bg"
- android:layout_marginLeft="@dimen/default_content_margin"
- android:layout_marginRight="@dimen/default_content_margin"
- android:textColor="@color/white"
- android:textSize="@dimen/company_16sp"
- android:text="下一步"/>
- </LinearLayout>
|