<?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 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_enable_phone_account_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_enable_phone_account_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_enable_phone_account_register_button" android:text="@string/telecom_enable_phone_account_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_enable_phone_account_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_enable_phone_account_confirm_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_enable_phone_account_confirm_button"/> </RelativeLayout> <include layout="@layout/pass_fail_buttons" /> </LinearLayout> </ScrollView>