1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:orientation="vertical" android:layout_width="match_parent"
4    android:layout_height="match_parent"
5    android:keepScreenOn="true">
6    <view
7        android:layout_width="match_parent"
8        android:layout_height="match_parent"
9        class="com.android.cts.verifier.sensors.RVCVCameraPreview"
10        android:id="@+id/cam_preview"
11        android:layout_centerVertical="true"
12        android:layout_centerHorizontal="true" />
13
14    <!--
15    <ImageView
16        android:layout_width="match_parent"
17        android:layout_height="match_parent"
18        android:layout_centerVertical="true"
19        android:id="@+id/cam_overlay"
20        android:src="@drawable/icon"
21        android:scaleType="fitStart"
22        />
23    -->
24    <view
25        android:layout_width="match_parent"
26        android:layout_height="match_parent"
27        class="com.android.cts.verifier.sensors.MotionIndicatorView"
28        android:id="@+id/cam_indicator"
29        android:layout_centerVertical="true"
30        android:layout_centerHorizontal="true" />
31
32    <ImageView
33        android:layout_width="wrap_content"
34        android:layout_height="wrap_content"
35        android:layout_centerInParent="true"
36        android:id="@+id/cam_overlay"
37        android:scaleType="fitStart"
38        />
39</RelativeLayout>