common_classics_footer.xml
2.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
tools:paddingTop="20dp"
tools:paddingBottom="20dp"
tools:background="#F9F9F9"
tools:parentTag="android.widget.RelativeLayout">
<ImageView
android:id="@+id/srl_classics_arrow"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginEnd="20dp"
android:layout_marginRight="20dp"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/srl_classics_title"
android:layout_toStartOf="@+id/srl_classics_title"
android:contentDescription="@android:string/untitled"
/>
<ImageView
android:id="@+id/srl_classics_progress"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_centerVertical="true"
android:layout_marginEnd="20dp"
android:layout_marginRight="20dp"
android:layout_toStartOf="@+id/srl_classics_title"
android:layout_toLeftOf="@+id/srl_classics_title"
android:contentDescription="@android:string/untitled"
tools:src="@android:drawable/stat_notify_sync"
tools:tint="#666" />
<TextView
android:id="@+id/srl_classics_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:maxLines="1"
android:text="@string/srl_footer_pulling"
android:textColor="#999999"
android:textSize="15sp" />
<View
android:id="@+id/vLeftLine"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp1"
android:layout_centerVertical="true"
android:layout_marginEnd="@dimen/rmrb_dp16"
android:layout_marginStart="@dimen/rmrb_dp8"
android:visibility="gone"
android:layout_toStartOf="@id/srl_classics_title"
android:background="#E8E8E8" />
<View
android:id="@+id/vRightLine"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp1"
android:layout_centerVertical="true"
android:visibility="gone"
android:layout_marginStart="@dimen/rmrb_dp16"
android:layout_marginEnd="@dimen/rmrb_dp8"
android:layout_toEndOf="@id/srl_classics_title"
android:background="#E8E8E8" />
</RelativeLayout>