You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.1 KiB
96 lines
3.1 KiB
7 months ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:id="@+id/scrollView"
|
||
|
style="@style/RootLayoutPadding">
|
||
|
|
||
|
<LinearLayout android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<include layout="@layout/uap_usb_confirm"/>
|
||
|
|
||
|
<include layout="@layout/uap_profile_header"/>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
|
||
|
<TextView
|
||
|
android:text="@string/uapButtonTestInstructions"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
|
||
|
<TextView
|
||
|
android:text="@string/uapButtonsBtnALbl"
|
||
|
android:id="@+id/uap_buttonsBtnALabelTx"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:text="@string/uapButtonsNotRecognized"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/uap_buttonsBtnAStatusTx"
|
||
|
android:paddingLeft="16dp"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
|
||
|
<TextView
|
||
|
android:text="@string/uapButtonsBtnBLbl"
|
||
|
android:id="@+id/uap_buttonsBtnBLabelTx"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:text="@string/uapButtonsNotRecognized"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/uap_buttonsBtnBStatusTx"
|
||
|
android:paddingLeft="16dp"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"/>
|
||
|
|
||
|
<TextView
|
||
|
android:text="@string/uapButtonsBtnCLbl"
|
||
|
android:id="@+id/uap_buttonsBtnCLabelTx"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:text="@string/uapButtonsNotRecognized"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/uap_buttonsBtnCStatusTx"
|
||
|
android:paddingLeft="16dp"/>
|
||
|
|
||
|
<Space
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="5dp"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/usbaudio_results_text"/>
|
||
|
|
||
|
<include layout="@layout/pass_fail_buttons"/>
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|