1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2020 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License 16 --> 17 18<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:tools="http://schemas.android.com/tools" 20 android:layout_width="match_parent" 21 android:layout_height="match_parent" 22 tools:context=".ProvisionActivity"> 23 24 25 <LinearLayout 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:orientation="vertical"> 29 30 <LinearLayout 31 android:layout_width="wrap_content" 32 android:layout_height="wrap_content" 33 android:orientation="horizontal"> 34 35 <TextView 36 android:layout_width="wrap_content" 37 android:layout_height="wrap_content" 38 android:text="@string/rcs_profile" 39 android:textSize="15dp" 40 android:textStyle="bold" /> 41 42 <Spinner 43 android:id="@+id/rcs_profile_list" 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" /> 46 </LinearLayout> 47 48 <Button 49 android:id="@+id/provisioning_register_btn" 50 android:layout_width="match_parent" 51 android:layout_height="wrap_content" 52 android:layout_marginTop="10dp" 53 android:text="@string/register_provisioning_callback" 54 android:textAllCaps="false" /> 55 56 <Button 57 android:id="@+id/provisioning_unregister_btn" 58 android:layout_width="match_parent" 59 android:layout_height="wrap_content" 60 android:layout_marginTop="10dp" 61 android:text="@string/unregister_provisioning_callback" 62 android:textAllCaps="false" /> 63 64 <Button 65 android:id="@+id/provisioning_singlereg_btn" 66 android:layout_width="match_parent" 67 android:layout_height="wrap_content" 68 android:layout_marginTop="10dp" 69 android:layout_marginBottom="10dp" 70 android:text="@string/isRcsVolteSingleRegCapable" 71 android:textAllCaps="false" /> 72 73 <TextView 74 android:id="@+id/provisioning_singlereg_result" 75 android:layout_width="match_parent" 76 android:layout_height="wrap_content" 77 android:text="@string/result" 78 android:textSize="15dp" 79 android:textStyle="bold" /> 80 81 <TextView 82 android:id="@+id/provisioning_callback_result" 83 android:layout_width="match_parent" 84 android:layout_height="wrap_content" 85 android:layout_marginTop="10dp" 86 android:scrollbars="vertical" 87 android:text="@string/callback_result" 88 android:textSize="15dp" 89 android:textStyle="bold" /> 90 91 </LinearLayout> 92 93</androidx.constraintlayout.widget.ConstraintLayout> 94