riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
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
<?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="match_parent"
    tools:context="cn.flightfeather.thirdappmodule.activity.TaskAdjustActivity">
 
    <include
        android:id="@+id/actionbar"
        layout="@layout/layout_actionbar"
        />
 
    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_subtask"
        android:layout_below="@+id/actionbar"
        android:layout_above="@+id/ll_bottom_bar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
 
    <LinearLayout
        android:id="@+id/ll_bottom_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@color/colorPrimary"
        >
 
        <TextView
            android:id="@+id/tv_daytask"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="@dimen/fab_margin"
            android:clickable="true"
            android:foreground="?android:attr/selectableItemBackground"
            android:text="@string/day_task"
            android:gravity="center"
            android:textColor="@color/white"
            />
 
        <TextView
            android:id="@+id/tv_subtask"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="@dimen/fab_margin"
            android:clickable="true"
            android:foreground="?android:attr/selectableItemBackground"
            android:text="@string/subtask"
            android:gravity="center"
            android:textColor="@color/white"
            />
 
    </LinearLayout>
</RelativeLayout>