1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2014 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License 15 --> 16<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 17 android:fitsSystemWindows="true" 18 style="@style/RootLayoutPadding" 19 android:layout_width="match_parent" 20 android:layout_height="match_parent"> 21 22 <include 23 android:id="@+id/pass_fail_buttons" 24 layout="@layout/pass_fail_buttons" 25 android:layout_width="match_parent" 26 android:layout_height="wrap_content" 27 android:layout_alignParentBottom="true" /> 28 29 <TextView 30 android:id="@+id/sensor_value" 31 android:layout_width="wrap_content" 32 android:layout_height="wrap_content" 33 android:layout_above="@+id/sensor_accuracy_value" 34 android:layout_centerInParent="true" 35 android:layout_marginBottom="10dip" 36 android:background="@drawable/gray_bubble" 37 android:drawablePadding="10dip" 38 android:paddingLeft="10dip" 39 android:paddingRight="10dip" 40 android:textSize="20dip" /> 41 42 <TextView 43 android:id="@+id/sensor_accuracy_value" 44 android:layout_width="wrap_content" 45 android:layout_height="wrap_content" 46 android:layout_above="@+id/pass_fail_buttons" 47 android:layout_centerInParent="true" 48 android:layout_marginBottom="10dip" 49 android:background="@drawable/gray_bubble" 50 android:drawablePadding="10dip" 51 android:paddingLeft="10dip" 52 android:paddingRight="10dip" 53 android:textSize="20dip" /> 54 55</RelativeLayout> 56