comp_single_row_07.xml
1.47 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"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/topLine"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp5"
android:background="@color/res_color_common_C6" />
<include
layout="@layout/comp_single_top_more_thee"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/rmrb_dp6" />
<LinearLayout
android:id="@+id/llContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/res_color_common_C8"
android:orientation="vertical">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/contentRv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/rmrb_dp10"
android:overScrollMode="never" />
<ImageView
android:id="@+id/bottomLine"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp5"
android:background="@color/res_color_common_C6"/>
</LinearLayout>
</androidx.appcompat.widget.LinearLayoutCompat>