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=".MainActivity"> 23 24 <LinearLayout 25 android:layout_width="match_parent" 26 android:layout_height="wrap_content" 27 android:orientation="vertical"> 28 29 <Button 30 android:id="@+id/provision" 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content" 33 android:text="@string/provisioning_test" 34 android:textAlignment="center" 35 android:textAllCaps="false" /> 36 37 <Button 38 android:id="@+id/delegate" 39 android:layout_width="match_parent" 40 android:layout_height="wrap_content" 41 android:text="@string/delegate_test" 42 android:textAlignment="center" 43 android:textAllCaps="false" /> 44 45 <Button 46 android:id="@+id/uce" 47 android:layout_width="match_parent" 48 android:layout_height="wrap_content" 49 android:text="@string/uce_test" 50 android:textAlignment="center" 51 android:textAllCaps="false" /> 52 53 <Button 54 android:id="@+id/gba" 55 android:layout_width="match_parent" 56 android:layout_height="wrap_content" 57 android:text="@string/gba_test" 58 android:textAlignment="center" 59 android:textAllCaps="false" /> 60 61 <Button 62 android:id="@+id/msgClient" 63 android:layout_width="match_parent" 64 android:layout_height="wrap_content" 65 android:text="@string/test_msg_client" 66 android:textAlignment="center" 67 android:textAllCaps="false" /> 68 69 <Button 70 android:id="@+id/uploadFile" 71 android:layout_width="match_parent" 72 android:layout_height="wrap_content" 73 android:text="@string/upload_file_gba" 74 android:textAlignment="center" 75 android:textAllCaps="false" /> 76 77 <Button 78 android:id="@+id/setCarrierLockMode" 79 android:layout_width="match_parent" 80 android:layout_height="wrap_content" 81 android:text="@string/setCarrierLockMode" 82 android:textAlignment="center" 83 android:textAllCaps="false"/> 84 85 <TextView 86 android:id="@+id/version_info" 87 android:layout_width="match_parent" 88 android:layout_height="wrap_content" 89 android:text="@string/version_info" 90 android:textAlignment="center" 91 android:paddingTop="7dp"/> 92 </LinearLayout> 93 94</androidx.constraintlayout.widget.ConstraintLayout> 95