Home | History | Annotate | Download | only in layout
      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     style="@style/RootLayoutPadding"
     18     android:layout_width="match_parent"
     19     android:layout_height="match_parent">
     20 
     21     <include
     22         android:id="@+id/pass_fail_buttons"
     23         layout="@layout/pass_fail_buttons"
     24         android:layout_width="match_parent"
     25         android:layout_height="wrap_content"
     26         android:layout_alignParentBottom="true" />
     27 
     28     <TextView
     29         android:id="@+id/sensor_value"
     30         android:layout_width="wrap_content"
     31         android:layout_height="wrap_content"
     32         android:layout_above="@+id/sensor_accuracy_value"
     33         android:layout_centerInParent="true"
     34         android:layout_marginBottom="10dip"
     35         android:background="@drawable/gray_bubble"
     36         android:drawablePadding="10dip"
     37         android:paddingLeft="10dip"
     38         android:paddingRight="10dip"
     39         android:textSize="20dip" />
     40 
     41     <TextView
     42         android:id="@+id/sensor_accuracy_value"
     43         android:layout_width="wrap_content"
     44         android:layout_height="wrap_content"
     45         android:layout_above="@+id/pass_fail_buttons"
     46         android:layout_centerInParent="true"
     47         android:layout_marginBottom="10dip"
     48         android:background="@drawable/gray_bubble"
     49         android:drawablePadding="10dip"
     50         android:paddingLeft="10dip"
     51         android:paddingRight="10dip"
     52         android:textSize="20dip" />
     53 
     54 </RelativeLayout>
     55