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 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:orientation="vertical" > 29 30 <TextView 31 android:id="@+id/features_main_text" 32 android:layout_width="match_parent" 33 android:layout_height="wrap_content" 34 android:text="@string/features_main_text"/> 35 <CheckBox 36 android:id="@+id/features_check_mmtel" 37 android:layout_width="match_parent" 38 android:layout_height="wrap_content" 39 android:text="@string/features_check_mmtel"/> 40 <CheckBox 41 android:id="@+id/features_check_rcs" 42 android:layout_width="match_parent" 43 android:layout_height="wrap_content" 44 android:text="@string/features_check_rcs"/> 45 <Button 46 android:id="@+id/features_change_button" 47 android:layout_width="match_parent" 48 android:layout_height="wrap_content" 49 android:paddingRight="4dp" 50 android:text="@string/features_change_button"/> 51 </LinearLayout> 52 53 <View 54 android:layout_width="match_parent" 55 android:layout_height= "1dp" 56 android:paddingRight="4dp" 57 android:background="?android:attr/listDivider" /> 58 59 <LinearLayout 60 android:layout_width="match_parent" 61 android:layout_height="wrap_content" 62 android:orientation="vertical" > 63 <TextView 64 android:layout_width="match_parent" 65 android:layout_height="wrap_content" 66 android:text="ImsService Controls"/> 67 <LinearLayout 68 android:layout_width="match_parent" 69 android:layout_height="wrap_content" 70 android:orientation="vertical"> 71 72 <Button 73 android:id="@+id/control_launch_reg" 74 android:layout_width="match_parent" 75 android:layout_height="wrap_content" 76 android:paddingRight="4dp" 77 android:text="Registration"/> 78 <Button 79 android:id="@+id/control_launch_calling" 80 android:layout_width="match_parent" 81 android:layout_height="wrap_content" 82 android:paddingRight="4dp" 83 android:text="Calling"/> 84 <Button 85 android:id="@+id/control_launch_config" 86 android:layout_width="match_parent" 87 android:layout_height="wrap_content" 88 android:paddingRight="4dp" 89 android:text="Config"/> 90 </LinearLayout> 91 </LinearLayout> 92 93 <View 94 android:layout_width="match_parent" 95 android:layout_height= "1dp" 96 android:paddingRight="4dp" 97 android:background="?android:attr/listDivider" /> 98 99 <LinearLayout 100 android:orientation="vertical" 101 android:layout_width="match_parent" 102 android:layout_height="wrap_content" 103 android:id="@+id/connections_list"/> 104</LinearLayout>