Xml文件  |  149行  |  6.81 KB

<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2017 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
  -->

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/telecom_incoming_call_test_info"/>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/js_padding"
            android:layout_marginBottom="@dimen/js_padding">

            <ImageView
                android:id="@+id/step_1_status"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/fs_indeterminate"
                android:layout_marginRight="@dimen/js_padding"
                android:layout_alignParentStart="true"
                android:layout_alignParentTop="true" />
            <TextView
                android:id="@+id/step_1_instructions"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/telecom_incoming_call_step_1"
                android:textSize="16dp"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true"
                android:layout_toRightOf="@id/step_1_status" />
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_below="@id/step_1_instructions"
                android:layout_marginLeft="20dip"
                android:layout_marginRight="20dip"
                android:layout_toRightOf="@id/step_1_status"
                android:id="@+id/telecom_incoming_call_register_enable_phone_account_button"
                android:text="@string/telecom_incoming_call_register_enable_phone_account_button"/>
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_below="@id/telecom_incoming_call_register_enable_phone_account_button"
                android:layout_marginLeft="20dip"
                android:layout_marginRight="20dip"
                android:id="@+id/telecom_incoming_call_confirm_register_button"
                android:text="@string/telecom_incoming_call_confirm_register_button"/>
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/js_padding"
            android:layout_marginBottom="@dimen/js_padding">

            <ImageView
                android:id="@+id/step_2_status"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/fs_indeterminate"
                android:layout_marginRight="@dimen/js_padding"
                android:layout_alignParentStart="true"
                android:layout_alignParentTop="true" />
            <TextView
                android:id="@+id/step_2_instructions"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/telecom_incoming_call_step_2"
                android:textSize="16dp"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true"
                android:layout_toRightOf="@id/step_2_status" />
            <Button
                android:id="@+id/telecom_incoming_call_dial_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_below="@id/step_2_instructions"
                android:layout_marginLeft="20dip"
                android:layout_marginRight="20dip"
                android:layout_toRightOf="@id/step_2_status"
                android:text="@string/telecom_incoming_call_dial_button"/>
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/js_padding"
            android:layout_marginBottom="@dimen/js_padding">

            <ImageView
                android:id="@+id/step_3_status"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/fs_indeterminate"
                android:layout_marginRight="@dimen/js_padding"
                android:layout_alignParentStart="true"
                android:layout_alignParentTop="true" />
            <TextView
                android:id="@+id/step_3_instructions"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/telecom_incoming_call_step_3"
                android:textSize="16dp"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true"
                android:layout_toRightOf="@id/step_3_status" />
            <Button
                android:id="@+id/telecom_incoming_call_confirm_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_below="@id/step_3_instructions"
                android:layout_marginLeft="20dip"
                android:layout_marginRight="20dip"
                android:layout_toRightOf="@id/step_3_status"
                android:text="@string/telecom_incoming_call_confirm_button"/>
        </RelativeLayout>

        <include layout="@layout/pass_fail_buttons" />
    </LinearLayout>
</ScrollView>