1<?xml version="1.0" encoding="utf-8"?> 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<LinearLayout 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="wrap_content" 20 android:orientation="vertical" > 21 <TextView 22 android:id="@+id/audio_zone_configuration_title" 23 android:layout_width="wrap_content" 24 android:layout_height="wrap_content" 25 android:text="@string/audio_zone_configuration_title_off" /> 26 <ScrollView 27 android:layout_width="fill_parent" 28 android:layout_height="wrap_content"> 29 <LinearLayout android:id="@+id/audio_zone_configuration" 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:orientation="vertical" > 33 <include android:id="@+id/audio_zone_configuration_layout" 34 android:layout_width="fill_parent" 35 android:layout_height="wrap_content" 36 layout="@layout/audio_configuration_select_layout" /> 37 <LinearLayout 38 android:layout_width="match_parent" 39 android:layout_height="wrap_content" 40 android:orientation="horizontal" > 41 <RadioGroup 42 android:id="@+id/reconnect_behavior_selection" 43 android:layout_width="wrap_content" 44 android:layout_height="wrap_content" 45 android:orientation="horizontal" > 46 <RadioButton 47 android:id="@+id/do_not_auto_connect" 48 android:layout_width="wrap_content" 49 android:layout_height="wrap_content" 50 android:text="@string/do_not_auto_connect" /> 51 <RadioButton 52 android:id="@+id/connect_to_last_selected" 53 android:layout_width="wrap_content" 54 android:layout_height="wrap_content" 55 android:text="@string/connect_to_last_selected" /> 56 <RadioButton 57 android:id="@+id/connect_to_configuration" 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 android:text="@string/connect_to_configuration" /> 61 </RadioGroup> 62 <Space 63 android:layout_width="4dp" 64 android:layout_height="match_parent" 65 android:gravity="start" /> 66 <TextView 67 android:id="@+id/auto_connect_config" 68 android:layout_width="wrap_content" 69 android:layout_height="wrap_content" 70 android:text="@{@string/auto_connect_config_name(@string/long_config_name)}" /> 71 </LinearLayout> 72 <LinearLayout 73 android:layout_width="match_parent" 74 android:layout_height="wrap_content" 75 android:orientation="vertical" > 76 <com.google.android.material.tabs.TabLayout 77 android:id="@+id/zone_configs_tabs" 78 android:layout_width="match_parent" 79 android:layout_height="wrap_content" > 80 </com.google.android.material.tabs.TabLayout> 81 <androidx.viewpager.widget.ViewPager 82 android:id="@+id/zones_configs_view_pager" 83 android:layout_width="match_parent" 84 android:layout_height="300dp" > 85 </androidx.viewpager.widget.ViewPager> 86 </LinearLayout> 87 <include android:id="@+id/audio_players" 88 android:layout_width="fill_parent" 89 android:layout_height="wrap_content" 90 layout="@layout/audio_player_tabs" /> 91 </LinearLayout> 92 </ScrollView> 93</LinearLayout> 94