Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2015 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     17         android:layout_width="match_parent"
     18         android:layout_height="wrap_content"
     19         android:padding="10dip"
     20         android:orientation="vertical">
     21 
     22   <TextView
     23       android:layout_width="match_parent"
     24       android:layout_height="wrap_content"
     25       android:scrollbars="vertical"
     26       android:gravity="bottom"
     27       android:id="@+id/info_text"
     28       android:text="@string/audio_frequency_line_instructions" />
     29   <LinearLayout
     30       android:layout_width="match_parent"
     31       android:layout_height="wrap_content"
     32       android:orientation="vertical">
     33       <Button
     34           android:layout_width="match_parent"
     35           android:layout_height="wrap_content"
     36           android:id="@+id/audio_frequency_line_plug_ready_btn"
     37           android:text="@string/audio_frequency_line_plug_ready_btn"/>
     38 
     39     <LinearLayout
     40         android:orientation="vertical"
     41         android:layout_width="match_parent"
     42         android:layout_height="match_parent">
     43 
     44      <LinearLayout
     45           android:layout_width="wrap_content"
     46           android:layout_height="wrap_content"
     47           android:orientation="horizontal"
     48           android:id="@+id/audio_frequency_line_layout">
     49             <Button
     50                 android:layout_width="wrap_content"
     51                 android:layout_height="wrap_content"
     52                 android:text="@string/audio_frequency_line_test_btn"
     53                 android:id="@+id/audio_frequency_line_test_btn"/>
     54 
     55             <ProgressBar
     56                 android:layout_width="wrap_content"
     57                 android:layout_height="wrap_content"
     58                 android:id="@+id/audio_frequency_line_progress_bar"/>
     59         </LinearLayout>
     60 
     61         <TextView
     62             android:layout_width="wrap_content"
     63             android:layout_height="wrap_content"
     64             android:text="@string/audio_frequency_line_results_text"
     65             android:id="@+id/audio_frequency_line_results_text"/>
     66 
     67     </LinearLayout>
     68     </LinearLayout>
     69 
     70   <include layout="@layout/pass_fail_buttons" />
     71 
     72 </LinearLayout>