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.
83 lines
3.6 KiB
83 lines
3.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2018 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
style="@style/RootLayoutPadding">
|
|
|
|
<TextView android:id="@+id/test_prerequisites"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/multinetwork_connectivity_test_pre_requisites"
|
|
style="@style/InstructionsSmallFont"
|
|
/>
|
|
<TextView android:id="@+id/test_ap_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/test_prerequisites"
|
|
android:text="@string/multinetwork_connectivity_test_ap_name"
|
|
style="@style/InstructionsSmallFont"
|
|
/>
|
|
<EditText android:id="@+id/test_ap_ssid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/test_ap_label"
|
|
android:inputType="text"
|
|
style="@style/InstructionsSmallFont"
|
|
/>
|
|
<TextView android:id="@+id/test_psk_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/test_ap_ssid"
|
|
android:text="@string/multinetwork_connectivity_test_ap_passphrase"
|
|
style="@style/InstructionsSmallFont"
|
|
/>
|
|
<EditText android:id="@+id/test_ap_psk"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/test_psk_label"
|
|
android:inputType="textPassword"
|
|
style="@style/InstructionsSmallFont"
|
|
/>
|
|
<TextView android:id="@+id/current_test"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/test_ap_psk"
|
|
android:text="@string/multinetwork_connectivity_test_1_desc"
|
|
style="@style/InstructionsSmallFont"
|
|
/>
|
|
<TextView android:id="@+id/test_progress_info"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/current_test"
|
|
style="@style/InstructionsSmallFont"
|
|
/>
|
|
<Button android:id="@+id/start_multinet_btn"
|
|
android:text="@string/multinetwork_connectivity_test_start"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/test_progress_info"
|
|
android:layout_centerHorizontal="true"
|
|
/>
|
|
|
|
|
|
<include android:id="@+id/pass_fail_buttons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
layout="@layout/pass_fail_buttons"/>
|
|
</RelativeLayout>
|