<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="@dimen/sdp_pay_dialog_width"
|
android:layout_height="@dimen/sdp_pay_dialog_height"
|
android:background="@drawable/sdp_dialog_base_bg"
|
android:orientation="vertical" >
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<ImageButton
|
android:id="@+id/backButton"
|
android:layout_gravity="left|center"
|
android:gravity="left"
|
android:layout_width="20dp"
|
android:layout_height="30dp"
|
android:layout_centerVertical="true"
|
android:layout_marginLeft="10dp"
|
android:background="@android:color/transparent"
|
android:src="@drawable/icon_left_arrow" />
|
|
<!-- 标题 -->
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:layout_centerInParent="true"
|
android:text="输入卡号"
|
android:paddingTop="5dp"
|
android:paddingBottom="5dp"
|
android:textSize="@dimen/sdp_dialog_title_text_size"
|
android:textStyle="bold"
|
android:textColor="@color/sdp_normal_text_color"/>
|
|
<Button
|
android:id="@+id/supportBankButton"
|
android:layout_width="90dp"
|
android:layout_height="18dp"
|
android:gravity="center_vertical"
|
android:background="@android:color/transparent"
|
android:text="支持银行"
|
android:layout_centerVertical="true"
|
android:layout_alignParentRight="true"
|
android:textColor="@color/LightBlue"
|
android:textSize="@dimen/sdp_normal_text_size"/>
|
</RelativeLayout>
|
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginLeft="10dp"
|
android:layout_marginRight="10dp"
|
android:background="@color/sdp_dialog_seperator_line_color"/>
|
|
<TextView
|
android:id="@+id/cardNumberLargeTextView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:minHeight="40dp"
|
android:maxLines="1"
|
android:textSize="20.0sp"
|
android:gravity="center_vertical|center_horizontal"
|
android:textColor="#ff005798"
|
android:background="#ffe1f1ff"
|
android:layout_marginTop="30dp"
|
android:layout_marginBottom="10dp"
|
android:visibility="invisible"/>
|
|
<EditText
|
android:id="@+id/bankCardNumEdittext"
|
android:layout_width="260dp"
|
android:layout_height="40dp"
|
android:background="@drawable/sdp_edittext_bg"
|
android:hint="输入银行卡号"
|
android:layout_marginLeft="10dp"
|
android:textSize="15sp"
|
android:inputType="number"
|
android:maxLength="20"
|
android:maxLines="1"
|
android:paddingLeft="5dp"
|
android:layout_marginTop="0dp"/>
|
|
<Button
|
android:id="@+id/nextButton"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:layout_marginBottom="20dp"
|
android:layout_marginLeft="10dp"
|
android:layout_marginRight="10dp"
|
android:layout_marginTop="40dp"
|
android:background="@drawable/sdp_button_sel"
|
android:elevation="15dp"
|
android:text="下一步"
|
android:textColor="#FFFFFF"
|
android:textSize="15sp" />
|
|
</LinearLayout>
|