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