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