1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2              android:fitsSystemWindows="true"
3              android:layout_width="match_parent"
4              android:layout_height="match_parent"
5              android:background="@android:color/white"
6              android:gravity="center"
7              android:orientation="vertical" >
8
9    <com.androidplot.xy.XYPlot
10        android:id="@+id/responseChart"
11        android:layout_width="match_parent"
12        android:layout_height="0dp"
13        android:layout_weight="9"
14        androidPlot.domainLabel="kHz"
15        androidPlot.rangeLabel="dB"
16        androidPlot.domainLabelWidget.labelPaint.textSize="16dp"
17        androidPlot.rangeLabelWidget.labelPaint.textSize="16dp"
18        androidPlot.graphWidget.rangeLabelPaint.textSize="16dp"
19        androidPlot.graphWidget.rangeOriginLabelPaint.textSize="16dp"
20        androidPlot.graphWidget.domainLabelPaint.textSize="16dp"
21        androidPlot.graphWidget.domainOriginLabelPaint.textSize="16dp"
22        androidPlot.legendWidget.textPaint.textSize="16dp"
23        androidPlot.legendWidget.iconSizeMetrics.heightMetric.value="16dp"
24        androidPlot.legendWidget.iconSizeMetrics.widthMetric.value="16dp"
25        androidPlot.legendWidget.heightMetric.value="16dp"
26        androidPlot.graphWidget.gridLinePaint.color="#000000" />
27
28    <Button
29        android:id="@+id/dismiss"
30        android:layout_width="match_parent"
31        android:layout_height="0dp"
32        android:layout_weight="1"
33        android:text="@string/hifi_ultrasound_test_dismiss" />
34</LinearLayout>
35