item_paper_list.xml
1.54 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
<?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:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/res_color_common_C8_keep"
android:orientation="vertical">
<TextView
android:id="@+id/tv_item_paper_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="@dimen/rmrb_dp15"
android:layout_marginTop="@dimen/rmrb_dp16"
android:layout_marginRight="@dimen/rmrb_dp15"
android:layout_marginBottom="@dimen/rmrb_dp16"
android:gravity="center"
android:textColor="@color/res_color_common_C11_keep"
android:textSize="@dimen/rmrb_dp14"
android:textStyle="bold"
tools:text="20 副刊" />
<com.wd.capability.layout.ui.widget.ItemRecyclerView
android:id="@+id/rv_item_paper_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/rmrb_dp15"
android:layout_marginRight="@dimen/rmrb_dp15"
android:paddingBottom="20dp" />
<View
android:id="@+id/divider_item"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp0_5"
android:layout_marginHorizontal="@dimen/rmrb_dp15"
android:background="@color/res_color_common_C6_keep" />
</LinearLayout>