layout_recommend_item.xml
1.92 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
<?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:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="182dp"
android:orientation="vertical">
<ImageView
android:id="@+id/recommend_item_img"
android:layout_width="176dp"
android:layout_height="123dp"
android:scaleType="fitXY" />
<TextView
android:id="@+id/recommend_item_tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="12dp"
android:textColor="#060606"
android:textSize="14sp"
tools:text="李疯子!!!!" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="8dp"
android:orientation="horizontal">
<TextView
android:id="@+id/recommend_item_tv_online"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="7dp"
android:drawableLeft="@mipmap/index_people_icon"
android:drawablePadding="5dp"
android:textColor="#cdcdcd"
android:textSize="10sp"
tools:text="2980人观看" />
<TextView
android:id="@+id/recommend_item_tv_judge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="7dp"
android:drawableLeft="@mipmap/index_people_icon"
android:drawablePadding="5dp"
android:textColor="#cdcdcd"
android:textSize="10sp"
tools:text="1234人评论" />
</LinearLayout>
</LinearLayout>