summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_trackers.xml
blob: 683f01c99e9d0633a6a5c980f36eec810e6ec83c (plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2023 MURENA SAS
  ~ Copyright (C) 2021 E FOUNDATION
  ~
  ~ This program is free software: you can redistribute it and/or modify
  ~ it under the terms of the GNU General Public License as published by
  ~ the Free Software Foundation, either version 3 of the License, or
  ~ (at your option) any later version.
  ~
  ~ This program is distributed in the hope that it will be useful,
  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  ~ GNU General Public License for more details.
  ~
  ~ You should have received a copy of the GNU General Public License
  ~ along with this program.  If not, see <https://www.gnu.org/licenses/>.
  -->
<layout>
<androidx.coordinatorlayout.widget.CoordinatorLayout
    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:background="@color/background"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    >
    <include layout="@layout/topbar" />

    <androidx.core.widget.NestedScrollView
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:fillViewport="true"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        >
    <LinearLayout
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical"
        >
        <TextView
            android:id="@+id/trackers_info"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:paddingTop="16dp"
            android:paddingHorizontal="16dp"
            android:lineSpacingExtra="5sp"
            android:text="@string/trackers_info"
            />
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/graph_subtitle"
            android:textColor="@color/secondary_text"
            android:textSize="14sp"
            android:paddingTop="24dp"
            android:paddingHorizontal="16dp"
            />

        <include layout="@layout/trackers_item_graph"
            android:id="@+id/graph_day"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:period="@{@string/trackers_period_day}"
            />
        <include layout="@layout/trackers_item_graph"
            android:id="@+id/graph_month"
            android:layout_marginTop="16dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:period="@{@string/trackers_period_month}"
            />
        <include layout="@layout/trackers_item_graph"
            android:id="@+id/graph_year"
            android:layout_marginTop="16dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:period="@{@string/trackers_period_year}"
            />
        <TextView
            android:id="@+id/trackers_lists_title"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:layout_marginTop="32dp"
            android:layout_marginHorizontal="16dp"
            android:layout_marginBottom="24dp"
            android:textSize="14sp"
            android:lineHeight="24dp"
            android:textFontWeight="500"
            android:text="@string/trackers_lists_title"
            />
        <com.google.android.material.tabs.TabLayout
            android:id="@+id/lists_tabs"
            android:layout_width="match_parent"
            android:layout_height="32dp"
            android:layout_marginHorizontal="16dp"
            android:layout_marginBottom="32dp"
            android:background="@drawable/pill_shape_tab_bg"
            app:tabBackground="@drawable/pill_shape_tab_indicator"
            app:tabIndicator="@null"
            app:tabSelectedTextColor="@color/white"
            app:tabTextColor="@color/primary_text"
            app:textAllCaps="false"
            />

        <androidx.viewpager2.widget.ViewPager2
            android:id="@+id/lists_pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
        </LinearLayout>
    </androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout>