aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/src/main/res/layout/histogram.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/WALT/app/src/main/res/layout/histogram.xml')
-rw-r--r--android/WALT/app/src/main/res/layout/histogram.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/android/WALT/app/src/main/res/layout/histogram.xml b/android/WALT/app/src/main/res/layout/histogram.xml
new file mode 100644
index 0000000..ca6dc1e
--- /dev/null
+++ b/android/WALT/app/src/main/res/layout/histogram.xml
@@ -0,0 +1,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_alignParentRight="true"
+ android:layout_alignParentTop="true"
+ android:tint="@color/button_tint"
+ android:layout_margin="5dp"
+ android:text="Close" />
+</RelativeLayout>