aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/src/main/res/layout/line_chart.xml
blob: a846a13bdca258d2f0cae1e0a81f1a7a3bb05de0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="5dp"
    android:background="@drawable/border"
    android:visibility="gone">
    <com.github.mikephil.charting.charts.LineChart
        android:id="@+id/chart"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="10dp"
        android:gravity="bottom" />
    <Button
        android:id="@+id/button_close_chart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@id/chart"
        android:layout_alignEnd="@id/chart"
        android:tint="@color/button_tint"
        android:layout_margin="5dp"
        android:text="@string/close" />
</RelativeLayout>