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 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="wrap_content" 20 android:padding="10dip" 21 android:orientation="vertical" 22> 23 24 <ScrollView 25 android:layout_width="match_parent" 26 android:layout_height="match_parent" 27 android:id="@+id/scrollView" 28 > 29 30 <LinearLayout 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content" 33 android:orientation="vertical" 34 > 35 36 <TextView 37 android:layout_width="match_parent" 38 android:layout_height="wrap_content" 39 android:scrollbars="vertical" 40 android:gravity="bottom" 41 android:id="@+id/audio_frequency_unprocessed_defined"/> 42 43 <ProgressBar 44 android:layout_width="wrap_content" 45 android:layout_height="wrap_content" 46 android:layout_weight="1" 47 android:id="@+id/audio_frequency_unprocessed_progress_bar" /> 48 49 <LinearLayout 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:orientation="vertical" 53 android:id="@+id/audio_frequency_unprocessed_layout_test1" 54 > 55 56 <TextView 57 android:layout_width="wrap_content" 58 android:layout_height="wrap_content" 59 android:text="@string/audio_frequency_unprocessed_instructions2" 60 android:id="@+id/audio_frequency_unprocessed_instructions2" /> 61 62 <Button 63 android:layout_width="wrap_content" 64 android:layout_height="wrap_content" 65 android:text="@string/audio_frequency_unprocessed_test1_btn" 66 android:id="@+id/audio_frequency_unprocessed_test1_btn" /> 67 68 <TextView 69 android:layout_width="wrap_content" 70 android:layout_height="wrap_content" 71 android:text="@string/audio_frequency_unprocessed_results_text" 72 android:id="@+id/audio_frequency_unprocessed_results1_text" /> 73 </LinearLayout> 74 75 76 <include layout="@layout/pass_fail_buttons" /> 77 </LinearLayout> 78 </ScrollView> 79 80</LinearLayout>