layout_integral_task.xml
2.59 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginHorizontal="@dimen/rmrb_dp16">
<RelativeLayout
android:id="@+id/layout_tyro_task"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"
android:background="@drawable/shape_bag_white_radious4"
android:layout_marginTop="@dimen/rmrb_dp12"
android:visibility="gone">
<TextView
android:id="@+id/tv_task_title_tyro"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/res_tyro_task"
android:textStyle="bold"
android:textSize="@dimen/rmrb_dp18"
android:textColor="@color/res_color_common_C1"
android:layout_marginLeft="@dimen/rmrb_dp16"
android:layout_marginTop="@dimen/rmrb_dp16"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_task_tyro"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_task_title_tyro"
android:layout_marginHorizontal="@dimen/rmrb_dp16"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/layout_daily"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"
android:background="@drawable/shape_bag_white_radious4"
android:layout_marginTop="@dimen/rmrb_dp12"
android:visibility="gone">
<TextView
android:id="@+id/tv_task_title_daily"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/res_daily_task"
android:textStyle="bold"
android:textSize="@dimen/rmrb_dp18"
android:textColor="@color/res_color_common_C1"
android:layout_marginLeft="@dimen/rmrb_dp16"
android:layout_marginTop="@dimen/rmrb_dp24"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_task_daily"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_task_title_daily"
android:layout_marginHorizontal="@dimen/rmrb_dp16"/>
</RelativeLayout>
</LinearLayout>