| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
|     android:layout_width="match_parent" | 
|     android:layout_height="40dp" | 
|     android:minHeight="40dp" | 
|     android:orientation="horizontal"> | 
|   | 
|     <ImageView | 
|         android:layout_width="1dp" | 
|         android:layout_height="match_parent" | 
|         android:src="#cccccc" /> | 
|   | 
|     <LinearLayout | 
|         android:layout_width="0dp" | 
|         android:layout_weight="4" | 
|         android:layout_height="match_parent" | 
|         android:orientation="horizontal"> | 
|   | 
|         <ImageView | 
|             android:id="@+id/bankIconImageView" | 
|             android:layout_gravity="left|center_vertical" | 
|             android:layout_marginLeft="5dp" | 
|             android:layout_width="@dimen/sdp_bank_icon_width" | 
|             android:layout_height="@dimen/sdp_bank_icon_height" | 
|             /> | 
|          | 
|         <TextView | 
|             android:id="@+id/bankNameTextView" | 
|             android:gravity="left|center_vertical" | 
|             android:layout_marginLeft="3dp" | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="match_parent" /> | 
|   | 
|     </LinearLayout> | 
|   | 
|     <ImageView | 
|         android:layout_width="1dp" | 
|         android:layout_height="match_parent" | 
|         android:src="#cccccc" /> | 
|   | 
|     <ImageView | 
|         android:id="@+id/drCardImageView" | 
|         android:layout_width="0dp" | 
|         android:layout_weight="2" | 
|         android:layout_height="match_parent" | 
|         android:scaleType="center"/> | 
|   | 
|     <ImageView | 
|         android:layout_width="1dp" | 
|         android:layout_height="match_parent" | 
|         android:src="#cccccc" /> | 
|   | 
|     <ImageView | 
|         android:id="@+id/crCardImageView" | 
|         android:layout_width="0dp" | 
|         android:layout_weight="2" | 
|         android:scaleType="center" | 
|         android:layout_height="match_parent" /> | 
|   | 
|     <ImageView | 
|         android:layout_width="1dp" | 
|         android:layout_height="match_parent" | 
|         android:src="#cccccc" /> | 
|   | 
| </LinearLayout> |