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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 18 android:fitsSystemWindows="true" 19 android:id="@+id/root_view" 20 android:layout_width="match_parent" 21 android:layout_height="match_parent" 22 style="@style/RootLayoutPadding"> 23 24 <TextView android:id="@+id/provisioning_byod_screenshot_description" 25 android:layout_width="match_parent" 26 android:layout_height="wrap_content" 27 android:text="@string/provisioning_byod_screenshot_start" 28 android:padding="8dp" 29 android:textSize="18sp" /> 30 31 <Button 32 android:id="@+id/provisioning_byod_screenshot_capture" 33 android:layout_width="wrap_content" 34 android:layout_height="wrap_content" 35 android:text="@string/provisioning_byod_screenshot_open" 36 android:layout_centerHorizontal="true" 37 android:layout_below="@id/provisioning_byod_screenshot_description"/> 38 39 <TextView 40 android:id="@+id/provisioning_byod_screenshot_preview_label" 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content" 43 android:layout_gravity="center|top" 44 android:fontFamily="monospace" 45 android:padding="8dp" 46 android:textAlignment="center" 47 android:textStyle="bold" 48 android:textSize="14sp" 49 android:visibility="gone" 50 android:layout_below="@id/provisioning_byod_screenshot_description" /> 51 52 <ImageView 53 android:id="@+id/provisioning_byod_screenshot_preview_image" 54 android:adjustViewBounds="true" 55 android:layout_width="wrap_content" 56 android:layout_height="wrap_content" 57 android:layout_centerInParent="true" 58 android:visibility="gone" 59 android:padding="16dp" 60 android:background="@drawable/checkerboard" 61 android:layout_below="@id/provisioning_byod_screenshot_preview_label" 62 android:layout_above="@id/pass_fail_buttons" /> 63 64 65 66 <include android:id="@+id/pass_fail_buttons" 67 layout="@layout/pass_fail_buttons" 68 android:layout_width="match_parent" 69 android:layout_height="wrap_content" 70 android:layout_alignParentBottom="true" /> 71</RelativeLayout> 72