rv_item_file.xml
1.56 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="1311dp"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/txt_title"
android:layout_width="700dp"
android:layout_height="30dp"
android:gravity="left|center"
android:text="Today(1 procedure)- 2021-03-14"
android:textColor="@color/color_white"
android:textSize="@dimen/text_size_25" />
<RelativeLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_below="@+id/txt_title"
android:visibility="visible" >
<com.sw.laryngoscope.widget.CustomListView
android:id="@+id/item_ls_file"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginBottom="10dp"
android:fadingEdge="none"
android:cacheColorHint="#00000000"
android:listSelector="#00000000"
android:scrollbars="vertical"
android:fadeScrollbars="false"
android:divider="@null"
android:visibility="visible" />
</RelativeLayout>
</RelativeLayout>