comp_single_row_10.xml
2.01 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
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat 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:orientation="vertical"
tools:ignore="MissingDefaultResource">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape_comp_image_frame_4_t_lr"
android:scaleType="fitXY"
tools:layout_height="@dimen/rmrb_dp94"
tools:src="@drawable/logo_icon_corner" />
<com.wd.capability.layout.ui.widget.ItemRecyclerView
android:id="@+id/contentRv"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<include
layout="@layout/item_base_line_gray"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp0_5"
android:layout_marginHorizontal="@dimen/rmrb_dp16" />
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/more_LLC"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:paddingVertical="@dimen/rmrb_dp16">
<TextView
android:id="@+id/tvMore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/component_more_content"
android:textColor="@color/res_color_common_C2"
android:textSize="@dimen/rmrb_dp16" />
<ImageView
android:layout_width="@dimen/rmrb_dp16"
android:layout_height="@dimen/rmrb_dp16"
android:src="@drawable/icon_comp_more_right_gray" />
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>