|
|
@@ -0,0 +1,374 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="#f4f4f4"
|
|
|
+ android:scrollbars="none"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingBottom="20dp"
|
|
|
+ >
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputGroupStyle"
|
|
|
+ android:layout_marginTop="0dp"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputGroupTitleStyle"
|
|
|
+ android:text="个人信息" />
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemFrameStyle">
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="住宅城市" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:hint="请填写所在城市" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="住宅地址" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:hint="详细填写精确到,街道,门牌号"
|
|
|
+ android:inputType="number"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="电子邮箱" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:digits="@string/digits_email"
|
|
|
+ android:hint="请提供电子账单发送的邮箱地址"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="婚姻状况" />
|
|
|
+
|
|
|
+ <RadioGroup style="@style/creditCardInputItemRadiogroupStyle">
|
|
|
+ <RadioButton
|
|
|
+ android:text=" 未婚"
|
|
|
+ style="@style/creditCardInputItemRadioBtnStyle" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:text=" 已婚"
|
|
|
+ style="@style/creditCardInputItemRadioBtnStyle" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:text=" 其他"
|
|
|
+ style="@style/creditCardInputItemRadioBtnStyle" />
|
|
|
+
|
|
|
+ </RadioGroup>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="教育程度" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:hint="请选择教育程度"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputGroupStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputGroupTitleStyle"
|
|
|
+ android:text="工作信息" />
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemFrameStyle">
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="单位名称" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:hint="请填写单位名称,15字以内" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="单位城市" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:hint="请填写所在城市"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="单位地址" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:hint="卡片将邮寄此地址,请详细填写信息"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="单位电话" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:hint="区号"
|
|
|
+ android:inputType="number"/>
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="3"
|
|
|
+ android:hint="电话号码"
|
|
|
+ android:inputType="number"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="工作年限" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:inputType="number"
|
|
|
+ android:hint="工作年限多少年"
|
|
|
+ android:maxLength="2" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputGroupStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputGroupTitleStyle"
|
|
|
+ android:text="联系人信息" />
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemFrameStyle">
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="直属亲属" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:hint="姓名"
|
|
|
+ />
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="2"
|
|
|
+ android:hint="手机号"
|
|
|
+ android:maxLength="11"
|
|
|
+ android:inputType="number"/>
|
|
|
+
|
|
|
+ <android.support.v7.widget.AppCompatSpinner
|
|
|
+ android:id="@+id/sp_relationship_immediate_relatives"
|
|
|
+ style="@style/creditCardInputItemSpinnerStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="其他联系人" />
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:hint="姓名"
|
|
|
+ />
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="2"
|
|
|
+ android:hint="手机号"
|
|
|
+ android:maxLength="11"
|
|
|
+ android:inputType="number"/>
|
|
|
+ <android.support.v7.widget.AppCompatSpinner
|
|
|
+ android:id="@+id/sp_relationship_other"
|
|
|
+ style="@style/creditCardInputItemSpinnerStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputGroupStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputGroupTitleStyle"
|
|
|
+ android:text="其他信息" />
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemFrameStyle">
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="证件有效期" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:hint="身份证有效期"
|
|
|
+ android:inputType="number"
|
|
|
+ />
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:hint="终止日期"
|
|
|
+ android:inputType="number"
|
|
|
+ />
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:button="@drawable/gx_credit_card_radiobtn"
|
|
|
+ android:textSize="11sp"
|
|
|
+ android:textColor="#b5b5b5"
|
|
|
+ android:text=" 长期有效"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="车牌号码" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:digits="@string/digits_car_no"
|
|
|
+ android:hint="请填写"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="住宅电话" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:hint="区号"
|
|
|
+ android:inputType="number"/>
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:layout_weight="3"
|
|
|
+ android:hint="电话号码"
|
|
|
+ android:inputType="number"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="常用QQ号" />
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.CompleteCommitEditText
|
|
|
+ style="@style/creditCardInputItemEtStyle"
|
|
|
+ android:hint="常用QQ号"
|
|
|
+ android:inputType="number"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout style="@style/creditCardInputItemStyle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/creditCardInputItemTitleStyle"
|
|
|
+ android:text="开通快捷还款" />
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:button="@drawable/gx_credit_card_radiobtn"
|
|
|
+ android:textSize="11sp"
|
|
|
+ android:textColor="#b5b5b5"
|
|
|
+ android:text=" 同意个人人民币结算账户协议并申请"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingBottom="15dp"
|
|
|
+ android:text="开民生银行余额理财电子账户绑定信用卡自动还款"
|
|
|
+ android:textColor="#444444"
|
|
|
+ android:textSize="9sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <com.kfzs.libs.widget.alpha.AlphaButton
|
|
|
+ android:id="@+id/btn_next"
|
|
|
+ style="@style/creditCardBtnGradientStyle"
|
|
|
+ android:text="下一步" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</ScrollView>
|