<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout 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:orientation="vertical"
|
android:padding="24dp">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="欢迎来到"
|
android:textSize="24sp"
|
android:textColor="#333333" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="智信管家!"
|
android:textSize="28sp"
|
android:textStyle="bold"
|
android:textColor="#333333" />
|
|
<ImageView
|
android:id="@+id/ivLogo"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="24dp"
|
android:layout_marginBottom="24dp"
|
android:layout_weight="0"
|
android:scaleType="centerCrop"
|
android:src="@drawable/login_robot" />
|
|
<Button
|
android:id="@+id/btnStartLogin"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="16dp"
|
android:text="手机号登录/注册"
|
android:textColor="#FFFFFF"
|
android:textSize="16sp"
|
android:backgroundTint="@color/cardview_dark_background"
|
app:cornerRadius="14dp" />
|
|
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:layout_marginTop="16dp"
|
android:orientation="horizontal">
|
|
<CheckBox
|
android:id="@+id/cbAgreement"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:checked="false" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="我已阅读并同意"
|
android:textSize="14sp" />
|
|
<TextView
|
android:id="@+id/tvUserAgreement"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="用户协议"
|
android:textColor="#2196F3"
|
android:textSize="14sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text=" & "
|
android:textSize="14sp" />
|
|
<TextView
|
android:id="@+id/tvPrivacyPolicy"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="隐私政策"
|
android:textColor="#2196F3"
|
android:textSize="14sp" />
|
</LinearLayout>
|
|
</LinearLayout>
|