1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2024 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:id="@+id/export_destination_screen" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent" 20 android:orientation="vertical" 21 android:paddingHorizontal="@dimen/spacing_large"> 22 23 <androidx.core.widget.NestedScrollView 24 android:id="@+id/scroll_view" 25 android:layout_width="match_parent" 26 android:layout_height="0dp" 27 android:layout_weight="1"> 28 29 <LinearLayout 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:orientation="vertical"> 33 34 <ImageView 35 android:id="@+id/export_destination_header_upload_icon" 36 android:layout_width="@dimen/app_header_icon_size" 37 android:layout_height="@dimen/app_header_icon_size" 38 android:layout_marginTop="@dimen/spacing_large" 39 android:layout_marginBottom="@dimen/spacing_normal" 40 android:importantForAccessibility="no" 41 android:src="?attr/uploadIcon" /> 42 43 <TextView 44 android:id="@+id/export_destination_title" 45 android:layout_width="wrap_content" 46 android:layout_height="wrap_content" 47 android:layout_marginBottom="@dimen/spacing_normal" 48 android:text="@string/export_destination_title" 49 android:textAppearance="?attr/textAppearanceHeadline2" /> 50 51 <LinearLayout 52 android:id="@+id/export_document_providers" 53 android:layout_width="match_parent" 54 android:layout_height="wrap_content" 55 android:layout_marginVertical="@dimen/spacing_large" 56 android:orientation="vertical" /> 57 58 <include layout="@layout/widget_export_import_footer" /> 59 60 </LinearLayout> 61 62 </androidx.core.widget.NestedScrollView> 63 64 <include layout="@layout/widget_export_import_navigation_buttons" /> 65 66</LinearLayout> 67