rv_listgroup.xml
1.4 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"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#F5F5F5">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_20"
android:layout_marginTop="@dimen/dp_15"
android:layout_marginBottom="@dimen/dp_15"
android:text="一、初识KUKA"
android:textColor="#333333"
android:textSize="15sp" />
<ImageView
android:id="@+id/img_down"
android:layout_width="@dimen/dp_15"
android:layout_height="@dimen/dp_8"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="@dimen/dp_20"
android:background="@mipmap/down" />
</RelativeLayout>
<com.hh.xuetubao.Utils.RecyclerViewNesting
android:id="@+id/rec_child"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/rl"
/>
</RelativeLayout>