item_usb.xml
1.57 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="1399dp"
android:layout_height="81dp"
android:gravity="center_vertical" >
<!--android:paddingTop="7.0dip"
android:paddingBottom="7.0dip"-->
<TextView
android:id="@+id/txt_line1"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/color_d8d8d8" />
<RelativeLayout
android:id="@+id/lay_value"
android:layout_width="match_parent"
android:layout_height="68dp"
android:layout_below="@+id/txt_line1"
android:gravity="center_vertical"
android:orientation="horizontal"
android:background="@drawable/shape_txt_set_style_11" >
<TextView
android:id="@+id/txt_usertype"
android:layout_width="288dp"
android:layout_height="match_parent"
android:layout_marginLeft="30dp"
android:gravity="left|center"
android:text="user"
android:textSize="@dimen/text_size_25"
android:textColor="@drawable/txt_click_color_3" />
<ImageView
android:id="@+id/img_sel"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="50dp"
android:layout_alignParentRight="true"
android:visibility="visible"
android:src="@mipmap/img_lock_fill" />
</RelativeLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@+id/lay_value"
android:background="@color/color_d8d8d8" />
</RelativeLayout>