1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2017 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<LinearLayout
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    android:layout_width="match_parent"
21    android:layout_height="wrap_content"
22    android:orientation="vertical"
23    android:paddingLeft="4dp">
24
25    <LinearLayout
26        xmlns:android="http://schemas.android.com/apk/res/android"
27        android:layout_width="match_parent"
28        android:layout_height="wrap_content"
29        android:orientation="horizontal"
30        android:paddingLeft="4dp">
31        <TextView
32            android:layout_width="wrap_content"
33            android:layout_height="wrap_content"
34            android:text="@string/reg_text_reg_tech"/>
35        <Spinner
36            android:layout_width="wrap_content"
37            android:layout_height="wrap_content"
38            android:id="@+id/reg_tech_selector"/>
39    </LinearLayout>
40    <Button
41        android:layout_width="match_parent"
42        android:layout_height="wrap_content"
43        android:text="@string/reg_registered_button"
44        android:id="@+id/reg_registered_button"/>
45    <Button
46        android:layout_width="match_parent"
47        android:layout_height="wrap_content"
48        android:text="@string/reg_registering_button"
49        android:id="@+id/reg_registering_button"/>
50
51    <View
52        android:layout_width="match_parent"
53        android:layout_height= "1dp"
54        android:paddingRight="4dp"
55        android:background="?android:attr/listDivider" />
56
57    <include layout="@layout/construct_imsreasoninfo"
58             android:id="@+id/deregistered_imsreasoninfo" />
59    <Button
60        android:layout_width="match_parent"
61        android:layout_height="wrap_content"
62        android:text="@string/reg_deregistered_button"
63        android:id="@+id/reg_deregistered_button"/>
64
65    <View
66        android:layout_width="match_parent"
67        android:layout_height= "1dp"
68        android:paddingRight="4dp"
69        android:background="?android:attr/listDivider" />
70
71    <include layout="@layout/construct_imsreasoninfo"
72             android:id="@+id/regchangefail_imsreasoninfo" />
73    <Button
74        android:layout_width="match_parent"
75        android:layout_height="wrap_content"
76        android:text="@string/reg_changefailed_button"
77        android:id="@+id/reg_changefailed_button"/>
78
79    <View
80        android:layout_width="match_parent"
81        android:layout_height= "1dp"
82        android:paddingRight="4dp"
83        android:background="?android:attr/listDivider" />
84
85    <TextView
86        android:layout_width="wrap_content"
87        android:layout_height="wrap_content"
88        android:textStyle="bold"
89        android:text="Registration Callback Listener Events:"/>
90
91    <ListView
92        android:id="@+id/reg_cb_list"
93        android:layout_width="match_parent"
94        android:layout_height="wrap_content"/>
95</LinearLayout>