record_activity.xml
1.9 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/record_bg"
android:orientation="vertical"
tools:context="com.studymachine.www.ui.activity.RecordActivity">
<com.hjq.bar.TitleBar
style="@style/ActionBarStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:barStyle="transparent"
app:leftIconWidth="@dimen/dp_22"
app:titleIcon="@drawable/record_title"
app:titleIconWidth="@dimen/dp_79" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fadingEdgeLength="@dimen/dp_30"
android:orientation="horizontal"
android:overScrollMode="ifContentScrolls"
android:requiresFadingEdge="horizontal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/record_time_item" />
<com.studymachine.www.widget.StatusLayout
android:id="@+id/hl_status_hint"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:scrollbarThumbVertical="@drawable/scrollbar_thumb"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/record_item" />
</com.studymachine.www.widget.StatusLayout>
</LinearLayout>