activity_wxentry.xml
2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/id_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="code: 由于隐私,该项不给予显示"
android:textColor="#323232"
android:textSize="14sp" />
<TextView
android:layout_width="200dp"
android:textColor="#fff"
android:textSize="14sp"
android:padding="10dp"
android:layout_alignParentRight="true"
android:background="@android:color/holo_red_dark"
android:text="涉及到隐私隐藏一部分"
android:layout_height="wrap_content" />
</RelativeLayout>
<TextView
android:id="@+id/nickname_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="nickname: 由于隐私,该项不给予显示"
android:textColor="#323232"
android:textSize="14sp" />
<TextView
android:id="@+id/sex_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="sex: 由于隐私,该项不给予显示"
android:textColor="#323232"
android:textSize="14sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="头像:"
android:textColor="#323232"
android:textSize="14sp" />
<ImageView
android:id="@+id/imageView"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>