沈斌
2017-01-02 26008989ed5af5eaad82ce29d9a8b8e2e35e2254
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
 
    <LinearLayout
        android:id="@+id/bank_item_title_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:visibility="visible" >
 
        <TextView
            android:id="@+id/item_title"
            android:layout_width="72dp"
            android:layout_height="26dp"
            android:layout_marginTop="24dp"
            android:gravity="center"
            android:textColor="@color/ebpay_text_333"
            android:textSize="@dimen/bd_wallet_text_size_normal" />
 
        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="@color/bd_wallet_gray" />
    </LinearLayout>
 
    <RelativeLayout
        android:id="@+id/bank_item_layout"
        android:layout_width="match_parent"
        android:layout_height="@dimen/bd_wallet_transfer_item_height"
        android:background="@drawable/wallet_base_select_bank_item_selector"
        android:paddingLeft="15dp"
        android:paddingRight="20dp" >
 
        <com.baidu.wallet.base.widget.NetImageView
            android:id="@+id/bank_logo"
            android:layout_width="35dp"
            android:layout_height="35dp"
            android:layout_centerVertical="true"
            android:contentDescription="@null"
            android:src="@drawable/wallet_base_banklogo_defult"
            android:visibility="gone" />
 
        <TextView
            android:id="@+id/bank_name"
            android:layout_width="match_parent"
            android:layout_height="@dimen/bd_wallet_transfer_item_height"
            android:layout_marginLeft="15dp"
            android:layout_toRightOf="@id/bank_logo"
            android:gravity="center_vertical"
            android:textColor="@color/ebpay_text_333"
            android:textSize="@dimen/bd_wallet_text_size_normal" />
    </RelativeLayout>
 
</LinearLayout>