br_select_account.xml
2.2 KB
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:background="@color/br_white"
android:minHeight="@dimen/br_dp270"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="@dimen/br_title_height"
android:paddingLeft="@dimen/br_login_padding_left_right">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="选择登录账号"
android:textColor="@color/br_login_main_title_color"
android:textSize="16sp" />
<LinearLayout
android:id="@+id/br_selectAccountClose"
android:layout_width="60dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:background="@drawable/br_back_btn_selector"
android:gravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/br_popup_closed_selector" />
</LinearLayout>
</RelativeLayout>
<ListView
android:id="@+id/br_selectAccountList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:cacheColorHint="@android:color/transparent"
android:divider="@color/br_transparent"
android:dividerHeight="5dp"
android:listSelector="@android:color/transparent"
android:paddingLeft="@dimen/br_login_padding_left_right"
android:paddingRight="@dimen/br_login_padding_left_right" />
</LinearLayout>
</RelativeLayout>