张海江
2016-12-30 455b3bee444ee94b016be9d4f8ad9111f7e3c6fa
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8"?>
<!-- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" -->
<!-- android:layout_width="fill_parent" -->
<!-- android:layout_height="wrap_content" -->
<!-- android:orientation="vertical" > -->
 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="@dimen/ebpay_title_heigth"
    android:background="@color/ebpay_title_bg" >
 
    <ImageView
        android:id="@+id/title_bar_logo"
        android:layout_width="@dimen/ebpay_logo_width"
        android:layout_height="@dimen/ebpay_logo_height"
        android:layout_centerInParent="true"
        android:contentDescription="@string/ebpay_img"
        android:visibility="gone" />
 
    <TextView
        android:id="@+id/ebpay_title_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="@string/ebpay_bd_wallet"
        android:textColor="@color/ebpay_white"
        android:textSize="@dimen/ebpay_text_size_20" />
 
    <ImageView
        android:id="@+id/title_bar_right_img"
        android:layout_width="35dp"
        android:layout_height="35dp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="10dip"
        android:scaleType="fitXY"
        android:visibility="gone" />
 
    <Button
        android:id="@+id/btn_Login_or_reg"
        android:layout_width="58dp"
        android:layout_height="fill_parent"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@drawable/ebpay_title_btn_selector"
        android:gravity="center"
        android:textColor="@color/ebpay_white"
        android:text="@string/ebpay_to_logout"
        android:textSize="15sp"
        android:visibility="gone" />
 
    <LinearLayout
        android:id="@+id/title_back"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:gravity="center_vertical"
        android:orientation="horizontal" >
 
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_gravity="center"
            android:scaleType="fitXY"
            android:src="@drawable/wallet_base_title_back_selector"
            android:contentDescription="@string/ebpay_img" />
 
        <View
            android:layout_width="2dp"
            android:layout_height="fill_parent"
            android:background="@drawable/ebpay_title_v_line"
            android:visibility="gone" />
    </LinearLayout>
 
</RelativeLayout><!-- </LinearLayout> -->