client_Hale
2019-01-10 58c28e935487d44ef2e49c7390dcbf34ca213fdc
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
<?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:background="@drawable/ipay_bg"
    android:orientation="vertical" >
 
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:orientation="vertical" >
 
       <RelativeLayout
           android:layout_width="match_parent"
           android:layout_height="wrap_content">
 
           <ImageView
               android:id="@+id/iv_single_dialog_close"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:layout_centerVertical="true"
               android:padding="@dimen/ipay_margin_15"
               android:src="@drawable/ipay_dialog_close" />
 
           <TextView
               android:id="@+id/tv_title"
               android:layout_width="match_parent"
               android:layout_height="@dimen/ipay_height_40"
               android:gravity="center"
               android:text="@string/ipay_common_single_select_dialog_title"
               android:paddingLeft="@dimen/ipay_margin_15"
               android:textColor="@color/ipay_color_value_7_2"
               android:textSize="@dimen/ipay_text_size_14" />
 
       </RelativeLayout>
 
        <View
            android:layout_width="match_parent"
            android:layout_height="@dimen/ipay_title_line_heigth"
            android:background="#cacaca" />
 
        <ListView
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:cacheColorHint="@null"
            android:dividerHeight="1px"
            android:fadingEdge="none"
            android:scrollbars="none"
            android:layout_marginRight="@dimen/ipay_margin_10"
            android:layout_marginLeft="@dimen/ipay_margin_10"
            android:divider="@color/ipay_color_value_3"
            android:listSelector="@android:color/transparent"
            android:scrollingCache="false" />
    </LinearLayout>
 
</LinearLayout>