brsdk_item_account.xml
1.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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="36dp"
android:gravity="center_vertical"
>
<ImageView
android:layout_width="40dp"
android:layout_height="match_parent"
android:src="@drawable/brsdk_history_white"
android:tint="@color/brsdk_gray"
android:padding="10dp"
/>
<TextView
android:id="@+id/brAccount"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:textColor="@color/brsdk_666666"
android:gravity="center_vertical"
android:includeFontPadding="false"
android:textSize="@dimen/brsdk_font_16sp"
android:maxLines="1"
tools:text="12345678900"
/>
<ImageView
android:id="@+id/brDelete"
android:layout_width="40dp"
android:layout_height="match_parent"
android:src="@drawable/brsdk_close_white"
android:tint="@color/brsdk_gray"
android:padding="12dp"
/>
</LinearLayout>