-
Notifications
You must be signed in to change notification settings - Fork 0
/
fragment_weekly.xml
54 lines (50 loc) · 1.99 KB
/
fragment_weekly.xml
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorblack">
<androidx.cardview.widget.CardView
android:id="@+id/card_view1_weekly"
android:layout_width="399dp"
android:layout_height="150dp"
android:layout_marginTop="30dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
app:cardBackgroundColor="@color/colordarkgray"
app:cardCornerRadius="5dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/weekly_icon"
android:layout_marginLeft="50dp"
android:layout_marginTop="50dp"
android:layout_width="90dp"
android:layout_height="80dp">
</ImageView>
<TextView
android:id="@+id/weekly_summtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="2"
android:lines="2"
android:layout_marginLeft="30dp"
android:layout_marginTop="60dp">
</TextView>
</LinearLayout>
</androidx.cardview.widget.CardView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/weekly_linechart"
android:layout_marginTop="210dp"
android:layout_width="match_parent"
android:layout_marginBottom="40dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_height="400dp">
</com.github.mikephil.charting.charts.LineChart>
</RelativeLayout>
</RelativeLayout>