1<!--
2  ~ Copyright (C) 2023 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16
17<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    xmlns:tools="http://schemas.android.com/tools"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent"
21    tools:context=".MainActivity">
22
23    <LinearLayout
24        android:layout_width="match_parent"
25        android:layout_height="wrap_content"
26        android:orientation="vertical">
27
28        <Button
29            android:id="@+id/noLockMode"
30            android:layout_width="match_parent"
31            android:layout_height="wrap_content"
32            android:text="@string/no_LockMode"
33            android:textAlignment="center"
34            android:textAllCaps="false" />
35
36        <Button
37            android:id="@+id/lockToVZW"
38            android:layout_width="match_parent"
39            android:layout_height="wrap_content"
40            android:text="@string/no_LockTo_VZW"
41            android:textAlignment="center"
42            android:textAllCaps="false" />
43
44        <Button
45            android:id="@+id/lockToATT"
46            android:layout_width="match_parent"
47            android:layout_height="wrap_content"
48            android:text="@string/no_LockTo_ATT"
49            android:textAlignment="center"
50            android:textAllCaps="false" />
51
52        <Button
53            android:id="@+id/lockToTMO"
54            android:layout_width="match_parent"
55            android:layout_height="wrap_content"
56            android:text="@string/no_LockTo_TMO"
57            android:textAlignment="center"
58            android:textAllCaps="false" />
59
60        <Button
61            android:id="@+id/lockToKOODOS"
62            android:layout_width="match_parent"
63            android:layout_height="wrap_content"
64            android:text="@string/no_LockTo_KOODOS"
65            android:textAlignment="center"
66            android:textAllCaps="false" />
67
68        <Button
69            android:id="@+id/lockToTELUS"
70            android:layout_width="match_parent"
71            android:layout_height="wrap_content"
72            android:text="@string/no_LockTo_TELUS"
73            android:textAlignment="center"
74            android:textAllCaps="false" />
75    </LinearLayout>
76
77</androidx.constraintlayout.widget.ConstraintLayout>