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 
     17 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
     18         android:layout_width="match_parent"
     19         android:layout_height="match_parent"
     20         android:id="@+id/scrollView"
     21         style="@style/RootLayoutPadding">
     22 
     23 <LinearLayout
     24         android:layout_width="match_parent"
     25         android:layout_height="wrap_content"
     26         android:orientation="vertical">
     27 
     28         <TextView
     29             android:layout_width="match_parent"
     30             android:layout_height="wrap_content"
     31             android:scrollbars="vertical"
     32             android:gravity="bottom"
     33             android:id="@+id/audio_general_headset_port_exists"
     34             android:text="@string/audio_general_headset_port_exists" />
     35 
     36         <LinearLayout
     37             android:layout_width="match_parent"
     38             android:layout_height="wrap_content"
     39             android:orientation="horizontal">
     40 
     41             <Button
     42                 android:layout_width="wrap_content"
     43                 android:layout_height="wrap_content"
     44                 android:id="@+id/audio_general_headset_no"
     45                 android:text="@string/audio_general_headset_no" />
     46 
     47             <Button
     48                 android:layout_width="wrap_content"
     49                 android:layout_height="wrap_content"
     50                 android:id="@+id/audio_general_headset_yes"
     51                 android:text="@string/audio_general_headset_yes" />
     52         </LinearLayout>
     53 
     54     <TextView
     55       android:layout_width="match_parent"
     56       android:layout_height="wrap_content"
     57       android:scrollbars="vertical"
     58       android:gravity="bottom"
     59       android:id="@+id/info_text"
     60       android:text="@string/audio_input_routingnotification_instructions" />
     61 
     62   <LinearLayout
     63       android:layout_width="match_parent"
     64       android:layout_height="wrap_content"
     65       android:orientation="vertical"
     66       android:id="@+id/audioRecordRoutingLayout">
     67       <TextView
     68           android:layout_width="match_parent"
     69           android:layout_height="wrap_content"
     70               android:text="@string/audio_routingnotification_recHeader"/>
     71 
     72       <TextView
     73           android:layout_width="match_parent"
     74           android:layout_height="wrap_content"
     75           android:id="@+id/audio_routingnotification_audioRecord_change"/>
     76 
     77       <LinearLayout
     78           android:layout_width="wrap_content"
     79           android:layout_height="wrap_content"
     80           android:orientation="horizontal">
     81           <Button
     82               android:layout_width="wrap_content"
     83               android:layout_height="wrap_content"
     84               android:id="@+id/audio_routingnotification_recordBtn"
     85               android:text="@string/audio_routingnotification_recBtn"/>
     86 
     87           <Button
     88               android:layout_width="match_parent"
     89               android:layout_height="wrap_content"
     90               android:id="@+id/audio_routingnotification_recordStopBtn"
     91               android:text="@string/audio_routingnotification_recStopBtn"/>
     92       </LinearLayout>
     93     </LinearLayout>
     94 
     95   <include layout="@layout/pass_fail_buttons" />
     96 
     97 </LinearLayout>
     98 </ScrollView>
     99