1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2020 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 17 android:layout_width="match_parent" 18 android:layout_height="match_parent" 19 android:orientation="vertical" > 20 <TextView 21 android:id="@+id/profile_textView_state" 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" android:text=""/> 24 <TextView 25 android:id="@+id/profile_textView_zoneinfo" 26 android:layout_width="wrap_content" 27 android:layout_height="wrap_content" android:text=""/> 28 <TextView 29 android:id="@+id/profile_textView_userstate" 30 android:layout_width="wrap_content" 31 android:layout_height="wrap_content" android:text=""/> 32 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 33 android:layout_width="match_parent" 34 android:layout_height="wrap_content" 35 android:orientation="horizontal" > 36 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:orientation="vertical" > 40 <TextView 41 android:id="@+id/profile_textView_users" 42 android:layout_width="wrap_content" 43 android:layout_height="wrap_content" android:text="Users"/> 44 <Spinner 45 android:id="@+id/profile_spinner_users" 46 android:layout_width="wrap_content" android:layout_height="wrap_content"/> 47 </LinearLayout> 48 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 49 android:layout_width="wrap_content" 50 android:layout_height="wrap_content" 51 android:orientation="vertical" > 52 <TextView 53 android:id="@+id/profile_textView_zones" 54 android:layout_width="wrap_content" 55 android:layout_height="wrap_content" android:text="Zones"/> 56 <Spinner 57 android:id="@+id/profile_spinner_zones" 58 android:layout_width="wrap_content" android:layout_height="wrap_content"/> 59 </LinearLayout> 60 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 61 android:layout_width="wrap_content" 62 android:layout_height="wrap_content" 63 android:orientation="vertical" > 64 <TextView 65 android:id="@+id/profile_textView_displays" 66 android:layout_width="wrap_content" 67 android:layout_height="wrap_content" android:text="Displays"/> 68 <Spinner 69 android:id="@+id/profile_spinner_displays" 70 android:layout_width="wrap_content" android:layout_height="wrap_content"/> 71 </LinearLayout> 72 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 73 android:layout_width="wrap_content" 74 android:layout_height="wrap_content" 75 android:orientation="vertical" > 76 <TextView 77 android:id="@+id/profile_textView_apps" 78 android:layout_width="wrap_content" 79 android:layout_height="wrap_content" android:text="Apps"/> 80 <Spinner 81 android:id="@+id/profile_spinner_apps" 82 android:layout_width="wrap_content" android:layout_height="wrap_content"/> 83 </LinearLayout> 84 </LinearLayout> 85 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 86 android:layout_width="match_parent" 87 android:layout_height="wrap_content" 88 android:orientation="horizontal" > 89 <Button 90 android:id="@+id/profile_button_create_managed_user" 91 android:layout_width="wrap_content" 92 android:layout_height="wrap_content" android:text="Create Managed User"/> 93 <Button 94 android:id="@+id/profile_button_create_restricted_user" 95 android:layout_width="wrap_content" 96 android:layout_height="wrap_content" android:text="Create Restricted User"/> 97 <Button 98 android:id="@+id/profile_button_remove_user" 99 android:layout_width="wrap_content" 100 android:layout_height="wrap_content" android:text="Remove User"/> 101 </LinearLayout> 102 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 103 android:layout_width="match_parent" 104 android:layout_height="wrap_content" 105 android:orientation="horizontal" > 106 <Button 107 android:id="@+id/profile_button_start_user" 108 android:layout_width="wrap_content" 109 android:layout_height="wrap_content" android:text="Start User"/> 110 <Button 111 android:id="@+id/profile_button_stop_user" 112 android:layout_width="wrap_content" 113 android:layout_height="wrap_content" android:text="Stop User"/> 114 <Button 115 android:id="@+id/profile_button_assign_user_to_zone" 116 android:layout_width="wrap_content" 117 android:layout_height="wrap_content" android:text="Assign User To Zone"/> 118 </LinearLayout> 119 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 120 android:layout_width="match_parent" 121 android:layout_height="wrap_content" 122 android:orientation="horizontal" > 123 <Button 124 android:id="@+id/profile_button_launch_app_for_zone" 125 android:layout_width="wrap_content" 126 android:layout_height="wrap_content" android:text="Start App For Zone"/> 127 <Button 128 android:id="@+id/profile_button_launch_app_for_display" 129 android:layout_width="wrap_content" 130 android:layout_height="wrap_content" android:text="Start App For Display And User"/> 131 </LinearLayout> 132 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 133 android:layout_width="match_parent" 134 android:layout_height="wrap_content" 135 android:orientation="horizontal" > 136 <TextView 137 android:layout_width="wrap_content" 138 android:layout_height="wrap_content" 139 android:text="@string/status_message_title"/> 140 <TextView 141 android:id="@+id/status_message_text_view" 142 android:paddingLeft="10dp" 143 android:layout_width="wrap_content" 144 android:layout_height="wrap_content" 145 android:text=""/> 146 </LinearLayout> 147 148</LinearLayout> 149