1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2024 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 xmlns:android="http://schemas.android.com/apk/res/android" 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 android:orientation="vertical"> 22 23 <View 24 android:id="@+id/media_output_divider_line" 25 android:layout_width="@dimen/media_output_divider_width" 26 android:layout_height="@dimen/media_output_divider_height" 27 android:layout_gravity="center" 28 android:background="@color/media_dialog_divider_line" 29 android:layout_marginVertical="@dimen/media_output_divider_margin_vertical" /> 30 31 <LinearLayout 32 android:id="@+id/main_container" 33 android:layout_width="match_parent" 34 android:layout_height="wrap_content" 35 android:importantForAccessibility="no" 36 android:orientation="horizontal"> 37 38 <FrameLayout 39 android:layout_width="wrap_content" 40 android:layout_height="wrap_content" 41 android:importantForAccessibility="no" 42 android:layout_gravity="center_horizontal|top"> 43 44 <ImageView 45 android:id="@android:id/icon" 46 android:duplicateParentState="true" 47 android:layout_marginHorizontal="@dimen/media_dialog_item_margin_horizontal" 48 style="@style/ControlWidgetIconStyle" /> 49 </FrameLayout> 50 51 <LinearLayout 52 android:id="@+id/item_container" 53 android:layout_width="0dp" 54 android:layout_height="wrap_content" 55 android:layout_weight="1" 56 android:focusable="true" 57 android:orientation="vertical" /> 58 </LinearLayout> 59</LinearLayout>