recycler_pgc.xml
1.91 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fresco="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="10dp"
>
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/user_face_iv"
android:layout_width="53dp"
android:layout_height="53dp"
android:layout_marginLeft="12dp"
fresco:actualImageScaleType="centerCrop"
fresco:placeholderImageScaleType="centerCrop" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="18dp"
android:orientation="vertical">
<TextView
android:id="@+id/recycler_item_small_top_tv"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center_vertical"
android:text="仙剑奇侠传"
android:textColor="#454648"
android:textSize="14sp" />
<TextView
android:id="@+id/recycler_item_small_buttom_tv"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center_vertical"
android:text="315个视频|24.6万人订阅"
android:textColor="#7d7d80"
android:textSize="11sp" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="2dp" />
</RelativeLayout>
</LinearLayout>