layout_find_item.xml
4.55 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?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="match_parent">
<LinearLayout
android:id="@+id/ll_sub_item"
android:layout_width="match_parent"
android:layout_height="292dp"
android:layout_gravity="top"
android:background="?android:attr/selectableItemBackground"
android:orientation="vertical">
<ImageView
android:id="@+id/ima_find_show"
android:layout_width="match_parent"
android:layout_height="203dp"
android:layout_gravity="top"
android:background="@drawable/default_background"
android:scaleType="fitXY" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp">
<ImageView
android:id="@+id/ima_find_head"
android:layout_width="31dp"
android:layout_height="31dp"
android:layout_marginTop="13dp"
android:background="@mipmap/ic_launcher" />
<TextView
android:id="@+id/tv_find_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/ima_find_head"
android:layout_marginLeft="9dp"
android:layout_toRightOf="@id/ima_find_head"
android:singleLine="true"
android:text="titile"
android:textColor="@color/color_060606"
android:textSize="14sp" />
<TextView
android:id="@+id/tv_find_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/ima_find_head"
android:layout_below="@id/tv_find_title"
android:layout_marginLeft="9dp"
android:layout_toRightOf="@id/ima_find_head"
android:singleLine="true"
android:text="15:30"
android:textColor="@color/color_bfbfbf"
android:textSize="11sp" />
<TextView
android:id="@+id/tv_seenum"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/ima_find_head"
android:layout_marginLeft="1dp"
android:layout_marginTop="14dp"
android:drawableLeft="@mipmap/find_playnum"
android:drawablePadding="5dp"
android:textColor="@color/color_9d9d9d"
android:textSize="11sp" />
<TextView
android:id="@+id/tv_commentnum"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/tv_seenum"
android:layout_alignBottom="@+id/tv_seenum"
android:layout_marginLeft="22dp"
android:layout_marginTop="0.5dp"
android:layout_toEndOf="@+id/tv_seenum"
android:drawableLeft="@mipmap/find_talk"
android:drawablePadding="5.3dp"
android:text="12"
android:textColor="@color/color_9d9d9d"
android:textSize="11sp" />
<ImageView
android:id="@+id/ima_share"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/tv_commentnum"
android:layout_marginBottom="1dp"
android:layout_marginLeft="22dp"
android:layout_toEndOf="@+id/tv_commentnum"
android:background="@mipmap/find_share" />
<ImageView
android:id="@+id/ima_reward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/tv_commentnum"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:background="@drawable/btn_dashang_bg" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_marginTop="6dp"
android:background="@color/color_ededed" />
</LinearLayout>
</LinearLayout>