<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/sdp_activity_background"
|
tools:context="com.shengpay.sdpmerchantpaysdk.ui.SDPSupportBankActivity">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="44dp">
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="#0285f0"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="支持银行"
|
android:textSize="20sp"
|
android:textColor="@color/sdp_white_color"
|
android:textStyle="bold"
|
android:layout_centerInParent="true"/>
|
|
<ImageButton
|
android:id="@+id/backButton"
|
android:layout_gravity="left|center"
|
android:gravity="left"
|
android:layout_width="40dp"
|
android:layout_height="40dp"
|
android:background="@android:color/transparent"
|
android:src="@drawable/nav_back"
|
android:layout_centerVertical="true"
|
android:layout_alignParentLeft="true"
|
android:layout_alignParentStart="true" />
|
</RelativeLayout>
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/sdp_white_color"
|
android:layout_marginLeft="9dp"
|
android:layout_marginRight="9dp"
|
android:layout_marginTop="16dp"
|
android:layout_marginBottom="16dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginLeft="17dp"
|
android:layout_marginRight="17dp"
|
android:layout_marginTop="18dp"
|
android:layout_marginBottom="18dp"
|
android:orientation="vertical"
|
>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:orientation="vertical">
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:src="#cccccc" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:layout_width="1dp"
|
android:layout_height="match_parent"
|
android:src="#cccccc" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_weight="4"
|
android:gravity="center"
|
android:layout_height="match_parent"
|
android:background="@color/sdp_support_bank_text_background"
|
android:text="银行列表" />
|
|
<ImageView
|
android:layout_width="1dp"
|
android:layout_height="match_parent"
|
android:src="#cccccc" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_weight="2"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:background="@color/sdp_support_bank_text_background"
|
android:text="借记卡"/>
|
|
<ImageView
|
android:layout_width="1dp"
|
android:layout_height="match_parent"
|
android:src="#cccccc" />
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_weight="2"
|
android:gravity="center"
|
android:layout_height="match_parent"
|
android:background="@color/sdp_support_bank_text_background"
|
android:text="贷记卡"/>
|
|
<ImageView
|
android:layout_width="1dp"
|
android:layout_height="match_parent"
|
android:src="#cccccc" />
|
|
</LinearLayout>
|
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:src="#cccccc" />
|
</LinearLayout>
|
|
<ListView
|
android:id="@+id/supportBankList"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:divider="#cccccc"
|
android:dividerHeight="1dp"
|
/>
|
|
</LinearLayout>
|
</RelativeLayout>
|
|
</LinearLayout>
|