aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/src/main/res/layout/histogram.xml
blob: bdbda122f32d75b0e6b1de3231beb5c64c9d1d9f (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:id="@+id/latency_chart_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="5dp"
    android:background="@drawable/border">
    <com.github.mikephil.charting.charts.BarChart
        android:id="@+id/bar_chart"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="10dp"
        android:gravity="bottom" />
    <Button
        android:id="@+id/button_close_bar_chart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@id/bar_chart"
        android:layout_alignEnd="@id/bar_chart"
        android:tint="@color/button_tint"
        android:layout_margin="5dp"
        android:text="@string/close" />
</RelativeLayout>