1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2023 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<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent" 20 android:filterTouchesWhenObscured="true" 21 android:orientation="vertical" 22 android:paddingHorizontal="@dimen/spacing_large" 23 android:paddingTop="@dimen/spacing_normal"> 24 <LinearLayout 25 android:layout_width="match_parent" 26 android:layout_height="match_parent" 27 android:orientation="vertical"> 28 29 <LinearLayout 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:orientation="horizontal" 33 android:gravity="top|start" 34 android:layout_marginBottom="@dimen/spacing_normal"> 35 36 <ImageView 37 android:layout_width="@dimen/icon_size" 38 android:layout_height="@dimen/icon_size" 39 android:layout_marginEnd="@dimen/spacing_normal" 40 android:src="?attr/appPermissionsIcon" 41 android:importantForAccessibility="no"/> 42 43 <LinearLayout 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" 46 android:orientation="vertical"> 47 48 <TextView 49 android:layout_width="wrap_content" 50 android:layout_height="wrap_content" 51 android:text="@string/request_route_info_who_can_see_data_title" 52 android:textAppearance="?attr/textAppearanceSubheader"/> 53 54 <TextView 55 android:layout_width="wrap_content" 56 android:layout_height="wrap_content" 57 android:text="@string/request_route_info_who_can_see_data_summary" 58 android:textAppearance="?attr/textAppearanceSummary"/> 59 </LinearLayout> 60 </LinearLayout> 61 62 <LinearLayout 63 android:layout_width="match_parent" 64 android:layout_height="wrap_content" 65 android:orientation="horizontal" 66 android:gravity="top|start"> 67 68 <ImageView 69 android:layout_width="@dimen/icon_size" 70 android:layout_height="@dimen/icon_size" 71 android:layout_marginEnd="@dimen/spacing_normal" 72 android:src="?attr/syncIcon" 73 android:importantForAccessibility="no"/> 74 75 <LinearLayout 76 android:layout_width="match_parent" 77 android:layout_height="wrap_content" 78 android:orientation="vertical"> 79 80 <TextView 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:text="@string/request_route_info_access_management_title" 84 android:textAppearance="?attr/textAppearanceSubheader"/> 85 86 <TextView 87 android:layout_width="wrap_content" 88 android:layout_height="wrap_content" 89 android:text="@string/request_route_info_access_management_summary" 90 android:textAppearance="?attr/textAppearanceSummary"/> 91 </LinearLayout> 92 </LinearLayout> 93 </LinearLayout> 94 95</ScrollView> 96